├── .gitattributes ├── .gitignore ├── GameZone.sln └── GameZone ├── Attributes ├── AllowedExtensionsAttribute.cs └── MaxFileSizeAttribute.cs ├── Controllers ├── GamesController.cs └── HomeController.cs ├── Data └── ApplicationDbContext.cs ├── GameZone.csproj ├── GlobalUsings.cs ├── Migrations ├── 20230814001644_InitialCreate.Designer.cs ├── 20230814001644_InitialCreate.cs └── ApplicationDbContextModelSnapshot.cs ├── Models ├── BaseEntity.cs ├── Category.cs ├── Device.cs ├── ErrorViewModel.cs ├── Game.cs └── GameDevice.cs ├── Program.cs ├── Properties └── launchSettings.json ├── Services ├── CategoriesService.cs ├── DevicesService.cs ├── GamesService.cs ├── ICategoriesService.cs ├── IDevicesService.cs └── IGamesService.cs ├── Settings └── FileSettings.cs ├── ViewModels ├── CreateGameFormViewModel.cs ├── EditGameFormViewModel.cs └── GameFormViewModel.cs ├── Views ├── Games │ ├── Create.cshtml │ ├── Details.cshtml │ ├── Edit.cshtml │ └── Index.cshtml ├── Home │ └── Index.cshtml ├── Shared │ ├── Error.cshtml │ ├── _Layout.cshtml │ ├── _Layout.cshtml.css │ └── _ValidationScriptsPartial.cshtml ├── _ViewImports.cshtml └── _ViewStart.cshtml ├── appsettings.Development.json ├── appsettings.json ├── libman.json └── wwwroot ├── assets └── images │ └── games │ ├── 6e3d5203-9667-4f37-8a5e-781ccd6e42ed.jpg │ └── 72bb109b-bf21-46ec-b6e3-351382bf6344.png ├── css ├── bootstrap.min.css └── site.css ├── favicon.ico ├── js ├── filesize-validator.js ├── game-form.js ├── games-index.js └── site.js └── lib ├── bootstrap-icons └── font │ ├── bootstrap-icons.css │ ├── bootstrap-icons.json │ ├── bootstrap-icons.min.css │ └── fonts │ ├── bootstrap-icons.woff │ └── bootstrap-icons.woff2 ├── bootstrap ├── LICENSE └── dist │ ├── css │ ├── bootstrap-grid.css │ ├── bootstrap-grid.css.map │ ├── bootstrap-grid.min.css │ ├── bootstrap-grid.min.css.map │ ├── bootstrap-grid.rtl.css │ ├── bootstrap-grid.rtl.css.map │ ├── bootstrap-grid.rtl.min.css │ ├── bootstrap-grid.rtl.min.css.map │ ├── bootstrap-reboot.css │ ├── bootstrap-reboot.css.map │ ├── bootstrap-reboot.min.css │ ├── bootstrap-reboot.min.css.map │ ├── bootstrap-reboot.rtl.css │ ├── bootstrap-reboot.rtl.css.map │ ├── bootstrap-reboot.rtl.min.css │ ├── bootstrap-reboot.rtl.min.css.map │ ├── bootstrap-utilities.css │ ├── bootstrap-utilities.css.map │ ├── bootstrap-utilities.min.css │ ├── bootstrap-utilities.min.css.map │ ├── bootstrap-utilities.rtl.css │ ├── bootstrap-utilities.rtl.css.map │ ├── bootstrap-utilities.rtl.min.css │ ├── bootstrap-utilities.rtl.min.css.map │ ├── bootstrap.css │ ├── bootstrap.css.map │ ├── bootstrap.min.css │ ├── bootstrap.min.css.map │ ├── bootstrap.rtl.css │ ├── bootstrap.rtl.css.map │ ├── bootstrap.rtl.min.css │ └── bootstrap.rtl.min.css.map │ └── js │ ├── bootstrap.bundle.js │ ├── bootstrap.bundle.js.map │ ├── bootstrap.bundle.min.js │ ├── bootstrap.bundle.min.js.map │ ├── bootstrap.esm.js │ ├── bootstrap.esm.js.map │ ├── bootstrap.esm.min.js │ ├── bootstrap.esm.min.js.map │ ├── bootstrap.js │ ├── bootstrap.js.map │ ├── bootstrap.min.js │ └── bootstrap.min.js.map ├── jquery-validation-unobtrusive ├── LICENSE.txt ├── jquery.validate.unobtrusive.js └── jquery.validate.unobtrusive.min.js ├── jquery-validation ├── LICENSE.md └── dist │ ├── additional-methods.js │ ├── additional-methods.min.js │ ├── jquery.validate.js │ └── jquery.validate.min.js ├── jquery ├── LICENSE.txt └── dist │ ├── jquery.js │ ├── jquery.min.js │ └── jquery.min.map ├── select2 ├── css │ └── select2.min.css └── js │ └── select2.min.js └── sweetalert2 ├── sweetalert2.min.css └── sweetalert2.min.js /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/.gitignore -------------------------------------------------------------------------------- /GameZone.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone.sln -------------------------------------------------------------------------------- /GameZone/Attributes/AllowedExtensionsAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/Attributes/AllowedExtensionsAttribute.cs -------------------------------------------------------------------------------- /GameZone/Attributes/MaxFileSizeAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/Attributes/MaxFileSizeAttribute.cs -------------------------------------------------------------------------------- /GameZone/Controllers/GamesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/Controllers/GamesController.cs -------------------------------------------------------------------------------- /GameZone/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/Controllers/HomeController.cs -------------------------------------------------------------------------------- /GameZone/Data/ApplicationDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/Data/ApplicationDbContext.cs -------------------------------------------------------------------------------- /GameZone/GameZone.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/GameZone.csproj -------------------------------------------------------------------------------- /GameZone/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/GlobalUsings.cs -------------------------------------------------------------------------------- /GameZone/Migrations/20230814001644_InitialCreate.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/Migrations/20230814001644_InitialCreate.Designer.cs -------------------------------------------------------------------------------- /GameZone/Migrations/20230814001644_InitialCreate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/Migrations/20230814001644_InitialCreate.cs -------------------------------------------------------------------------------- /GameZone/Migrations/ApplicationDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/Migrations/ApplicationDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /GameZone/Models/BaseEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/Models/BaseEntity.cs -------------------------------------------------------------------------------- /GameZone/Models/Category.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/Models/Category.cs -------------------------------------------------------------------------------- /GameZone/Models/Device.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/Models/Device.cs -------------------------------------------------------------------------------- /GameZone/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /GameZone/Models/Game.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/Models/Game.cs -------------------------------------------------------------------------------- /GameZone/Models/GameDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/Models/GameDevice.cs -------------------------------------------------------------------------------- /GameZone/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/Program.cs -------------------------------------------------------------------------------- /GameZone/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/Properties/launchSettings.json -------------------------------------------------------------------------------- /GameZone/Services/CategoriesService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/Services/CategoriesService.cs -------------------------------------------------------------------------------- /GameZone/Services/DevicesService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/Services/DevicesService.cs -------------------------------------------------------------------------------- /GameZone/Services/GamesService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/Services/GamesService.cs -------------------------------------------------------------------------------- /GameZone/Services/ICategoriesService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/Services/ICategoriesService.cs -------------------------------------------------------------------------------- /GameZone/Services/IDevicesService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/Services/IDevicesService.cs -------------------------------------------------------------------------------- /GameZone/Services/IGamesService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/Services/IGamesService.cs -------------------------------------------------------------------------------- /GameZone/Settings/FileSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/Settings/FileSettings.cs -------------------------------------------------------------------------------- /GameZone/ViewModels/CreateGameFormViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/ViewModels/CreateGameFormViewModel.cs -------------------------------------------------------------------------------- /GameZone/ViewModels/EditGameFormViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/ViewModels/EditGameFormViewModel.cs -------------------------------------------------------------------------------- /GameZone/ViewModels/GameFormViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/ViewModels/GameFormViewModel.cs -------------------------------------------------------------------------------- /GameZone/Views/Games/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/Views/Games/Create.cshtml -------------------------------------------------------------------------------- /GameZone/Views/Games/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/Views/Games/Details.cshtml -------------------------------------------------------------------------------- /GameZone/Views/Games/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/Views/Games/Edit.cshtml -------------------------------------------------------------------------------- /GameZone/Views/Games/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/Views/Games/Index.cshtml -------------------------------------------------------------------------------- /GameZone/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /GameZone/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /GameZone/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /GameZone/Views/Shared/_Layout.cshtml.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/Views/Shared/_Layout.cshtml.css -------------------------------------------------------------------------------- /GameZone/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /GameZone/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /GameZone/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /GameZone/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/appsettings.Development.json -------------------------------------------------------------------------------- /GameZone/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/appsettings.json -------------------------------------------------------------------------------- /GameZone/libman.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/libman.json -------------------------------------------------------------------------------- /GameZone/wwwroot/assets/images/games/6e3d5203-9667-4f37-8a5e-781ccd6e42ed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/wwwroot/assets/images/games/6e3d5203-9667-4f37-8a5e-781ccd6e42ed.jpg -------------------------------------------------------------------------------- /GameZone/wwwroot/assets/images/games/72bb109b-bf21-46ec-b6e3-351382bf6344.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/wwwroot/assets/images/games/72bb109b-bf21-46ec-b6e3-351382bf6344.png -------------------------------------------------------------------------------- /GameZone/wwwroot/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/wwwroot/css/bootstrap.min.css -------------------------------------------------------------------------------- /GameZone/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/wwwroot/css/site.css -------------------------------------------------------------------------------- /GameZone/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/wwwroot/favicon.ico -------------------------------------------------------------------------------- /GameZone/wwwroot/js/filesize-validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/wwwroot/js/filesize-validator.js -------------------------------------------------------------------------------- /GameZone/wwwroot/js/game-form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/wwwroot/js/game-form.js -------------------------------------------------------------------------------- /GameZone/wwwroot/js/games-index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/wwwroot/js/games-index.js -------------------------------------------------------------------------------- /GameZone/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/wwwroot/js/site.js -------------------------------------------------------------------------------- /GameZone/wwwroot/lib/bootstrap-icons/font/bootstrap-icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/wwwroot/lib/bootstrap-icons/font/bootstrap-icons.css -------------------------------------------------------------------------------- /GameZone/wwwroot/lib/bootstrap-icons/font/bootstrap-icons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/wwwroot/lib/bootstrap-icons/font/bootstrap-icons.json -------------------------------------------------------------------------------- /GameZone/wwwroot/lib/bootstrap-icons/font/bootstrap-icons.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/wwwroot/lib/bootstrap-icons/font/bootstrap-icons.min.css -------------------------------------------------------------------------------- /GameZone/wwwroot/lib/bootstrap-icons/font/fonts/bootstrap-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/wwwroot/lib/bootstrap-icons/font/fonts/bootstrap-icons.woff -------------------------------------------------------------------------------- /GameZone/wwwroot/lib/bootstrap-icons/font/fonts/bootstrap-icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/wwwroot/lib/bootstrap-icons/font/fonts/bootstrap-icons.woff2 -------------------------------------------------------------------------------- /GameZone/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /GameZone/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css -------------------------------------------------------------------------------- /GameZone/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /GameZone/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /GameZone/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /GameZone/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css -------------------------------------------------------------------------------- /GameZone/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map -------------------------------------------------------------------------------- /GameZone/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css -------------------------------------------------------------------------------- /GameZone/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map -------------------------------------------------------------------------------- /GameZone/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /GameZone/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /GameZone/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /GameZone/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /GameZone/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css -------------------------------------------------------------------------------- /GameZone/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map -------------------------------------------------------------------------------- /GameZone/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css -------------------------------------------------------------------------------- /GameZone/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map -------------------------------------------------------------------------------- /GameZone/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css -------------------------------------------------------------------------------- /GameZone/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map -------------------------------------------------------------------------------- /GameZone/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css -------------------------------------------------------------------------------- /GameZone/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map -------------------------------------------------------------------------------- /GameZone/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css -------------------------------------------------------------------------------- /GameZone/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map -------------------------------------------------------------------------------- /GameZone/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css -------------------------------------------------------------------------------- /GameZone/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map -------------------------------------------------------------------------------- /GameZone/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /GameZone/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /GameZone/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /GameZone/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /GameZone/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css -------------------------------------------------------------------------------- /GameZone/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map -------------------------------------------------------------------------------- /GameZone/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css -------------------------------------------------------------------------------- /GameZone/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map -------------------------------------------------------------------------------- /GameZone/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /GameZone/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /GameZone/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /GameZone/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /GameZone/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js -------------------------------------------------------------------------------- /GameZone/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map -------------------------------------------------------------------------------- /GameZone/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js -------------------------------------------------------------------------------- /GameZone/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map -------------------------------------------------------------------------------- /GameZone/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /GameZone/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map -------------------------------------------------------------------------------- /GameZone/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /GameZone/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /GameZone/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt -------------------------------------------------------------------------------- /GameZone/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /GameZone/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /GameZone/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /GameZone/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /GameZone/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /GameZone/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /GameZone/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /GameZone/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /GameZone/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /GameZone/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /GameZone/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /GameZone/wwwroot/lib/select2/css/select2.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/wwwroot/lib/select2/css/select2.min.css -------------------------------------------------------------------------------- /GameZone/wwwroot/lib/select2/js/select2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/wwwroot/lib/select2/js/select2.min.js -------------------------------------------------------------------------------- /GameZone/wwwroot/lib/sweetalert2/sweetalert2.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/wwwroot/lib/sweetalert2/sweetalert2.min.css -------------------------------------------------------------------------------- /GameZone/wwwroot/lib/sweetalert2/sweetalert2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhammadelhelaly/GameZone/HEAD/GameZone/wwwroot/lib/sweetalert2/sweetalert2.min.js --------------------------------------------------------------------------------