├── .gitignore ├── LICENSE ├── README.md ├── ScryfallApi.sln ├── samples └── ScryfallApi.WebSample │ ├── Pages │ ├── Cards.cshtml │ ├── Cards.cshtml.cs │ ├── Error.cshtml │ ├── Error.cshtml.cs │ ├── Index.cshtml │ ├── Index.cshtml.cs │ ├── Privacy.cshtml │ ├── Privacy.cshtml.cs │ ├── Search.cshtml │ ├── Search.cshtml.cs │ ├── Sets.cshtml │ ├── Sets.cshtml.cs │ ├── Shared │ │ ├── _Layout.cshtml │ │ └── _ValidationScriptsPartial.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml │ ├── Program.cs │ ├── ScryfallApi.WebSample.csproj │ ├── appsettings.Development.json │ ├── appsettings.json │ └── wwwroot │ ├── css │ └── site.css │ ├── favicon.ico │ ├── js │ └── site.js │ └── lib │ ├── 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 ├── src └── ScryfallApi.Client │ ├── Apis │ ├── BaseRestService.cs │ ├── BulkData.cs │ ├── Cards.cs │ ├── Catalogs.cs │ ├── IBulkData.cs │ ├── ICards.cs │ ├── ICatalogs.cs │ ├── ISets.cs │ ├── ISymbology.cs │ ├── Sets.cs │ └── Symbology.cs │ ├── DependencyInjection.cs │ ├── IScryfallApiClient.cs │ ├── JsonConverters.cs │ ├── Models │ ├── BaseItem.cs │ ├── BulkDataItem.cs │ ├── Card.cs │ ├── CardFace.cs │ ├── Catalog.cs │ ├── Error.cs │ ├── ManaCost.cs │ ├── Price.cs │ ├── ResultList.cs │ ├── SearchOptions.cs │ ├── Set.cs │ └── Symbol.cs │ ├── ScryfallApi.Client.csproj │ ├── ScryfallApiClient.cs │ ├── ScryfallApiClientConfig.cs │ ├── ScryfallApiException.cs │ └── SetTypes.cs └── tests └── ScryfallApi.Client.Tests ├── ScryfallApi.Client.Tests.csproj └── UnitTest1.cs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/README.md -------------------------------------------------------------------------------- /ScryfallApi.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/ScryfallApi.sln -------------------------------------------------------------------------------- /samples/ScryfallApi.WebSample/Pages/Cards.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/samples/ScryfallApi.WebSample/Pages/Cards.cshtml -------------------------------------------------------------------------------- /samples/ScryfallApi.WebSample/Pages/Cards.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/samples/ScryfallApi.WebSample/Pages/Cards.cshtml.cs -------------------------------------------------------------------------------- /samples/ScryfallApi.WebSample/Pages/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/samples/ScryfallApi.WebSample/Pages/Error.cshtml -------------------------------------------------------------------------------- /samples/ScryfallApi.WebSample/Pages/Error.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/samples/ScryfallApi.WebSample/Pages/Error.cshtml.cs -------------------------------------------------------------------------------- /samples/ScryfallApi.WebSample/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/samples/ScryfallApi.WebSample/Pages/Index.cshtml -------------------------------------------------------------------------------- /samples/ScryfallApi.WebSample/Pages/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/samples/ScryfallApi.WebSample/Pages/Index.cshtml.cs -------------------------------------------------------------------------------- /samples/ScryfallApi.WebSample/Pages/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/samples/ScryfallApi.WebSample/Pages/Privacy.cshtml -------------------------------------------------------------------------------- /samples/ScryfallApi.WebSample/Pages/Privacy.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/samples/ScryfallApi.WebSample/Pages/Privacy.cshtml.cs -------------------------------------------------------------------------------- /samples/ScryfallApi.WebSample/Pages/Search.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/samples/ScryfallApi.WebSample/Pages/Search.cshtml -------------------------------------------------------------------------------- /samples/ScryfallApi.WebSample/Pages/Search.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/samples/ScryfallApi.WebSample/Pages/Search.cshtml.cs -------------------------------------------------------------------------------- /samples/ScryfallApi.WebSample/Pages/Sets.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/samples/ScryfallApi.WebSample/Pages/Sets.cshtml -------------------------------------------------------------------------------- /samples/ScryfallApi.WebSample/Pages/Sets.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/samples/ScryfallApi.WebSample/Pages/Sets.cshtml.cs -------------------------------------------------------------------------------- /samples/ScryfallApi.WebSample/Pages/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/samples/ScryfallApi.WebSample/Pages/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /samples/ScryfallApi.WebSample/Pages/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/samples/ScryfallApi.WebSample/Pages/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /samples/ScryfallApi.WebSample/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/samples/ScryfallApi.WebSample/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /samples/ScryfallApi.WebSample/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/samples/ScryfallApi.WebSample/Pages/_ViewStart.cshtml -------------------------------------------------------------------------------- /samples/ScryfallApi.WebSample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/samples/ScryfallApi.WebSample/Program.cs -------------------------------------------------------------------------------- /samples/ScryfallApi.WebSample/ScryfallApi.WebSample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/samples/ScryfallApi.WebSample/ScryfallApi.WebSample.csproj -------------------------------------------------------------------------------- /samples/ScryfallApi.WebSample/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/samples/ScryfallApi.WebSample/appsettings.Development.json -------------------------------------------------------------------------------- /samples/ScryfallApi.WebSample/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/samples/ScryfallApi.WebSample/appsettings.json -------------------------------------------------------------------------------- /samples/ScryfallApi.WebSample/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/samples/ScryfallApi.WebSample/wwwroot/css/site.css -------------------------------------------------------------------------------- /samples/ScryfallApi.WebSample/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/samples/ScryfallApi.WebSample/wwwroot/favicon.ico -------------------------------------------------------------------------------- /samples/ScryfallApi.WebSample/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/samples/ScryfallApi.WebSample/wwwroot/js/site.js -------------------------------------------------------------------------------- /samples/ScryfallApi.WebSample/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/samples/ScryfallApi.WebSample/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /samples/ScryfallApi.WebSample/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/samples/ScryfallApi.WebSample/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css -------------------------------------------------------------------------------- /samples/ScryfallApi.WebSample/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/samples/ScryfallApi.WebSample/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /samples/ScryfallApi.WebSample/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/samples/ScryfallApi.WebSample/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /samples/ScryfallApi.WebSample/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/samples/ScryfallApi.WebSample/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /samples/ScryfallApi.WebSample/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/samples/ScryfallApi.WebSample/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css -------------------------------------------------------------------------------- /samples/ScryfallApi.WebSample/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/samples/ScryfallApi.WebSample/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map -------------------------------------------------------------------------------- /samples/ScryfallApi.WebSample/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/samples/ScryfallApi.WebSample/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css -------------------------------------------------------------------------------- /samples/ScryfallApi.WebSample/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/samples/ScryfallApi.WebSample/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map -------------------------------------------------------------------------------- /samples/ScryfallApi.WebSample/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/samples/ScryfallApi.WebSample/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /samples/ScryfallApi.WebSample/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/samples/ScryfallApi.WebSample/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /samples/ScryfallApi.WebSample/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/samples/ScryfallApi.WebSample/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /samples/ScryfallApi.WebSample/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/samples/ScryfallApi.WebSample/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /samples/ScryfallApi.WebSample/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/samples/ScryfallApi.WebSample/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css -------------------------------------------------------------------------------- /samples/ScryfallApi.WebSample/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/samples/ScryfallApi.WebSample/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map -------------------------------------------------------------------------------- /samples/ScryfallApi.WebSample/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/samples/ScryfallApi.WebSample/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css -------------------------------------------------------------------------------- /samples/ScryfallApi.WebSample/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/samples/ScryfallApi.WebSample/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map -------------------------------------------------------------------------------- /samples/ScryfallApi.WebSample/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/samples/ScryfallApi.WebSample/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css -------------------------------------------------------------------------------- /samples/ScryfallApi.WebSample/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/samples/ScryfallApi.WebSample/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map -------------------------------------------------------------------------------- /samples/ScryfallApi.WebSample/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/samples/ScryfallApi.WebSample/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css -------------------------------------------------------------------------------- /samples/ScryfallApi.WebSample/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/samples/ScryfallApi.WebSample/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map -------------------------------------------------------------------------------- /samples/ScryfallApi.WebSample/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/samples/ScryfallApi.WebSample/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css -------------------------------------------------------------------------------- /samples/ScryfallApi.WebSample/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/samples/ScryfallApi.WebSample/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map -------------------------------------------------------------------------------- /samples/ScryfallApi.WebSample/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/samples/ScryfallApi.WebSample/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css -------------------------------------------------------------------------------- /samples/ScryfallApi.WebSample/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/samples/ScryfallApi.WebSample/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map -------------------------------------------------------------------------------- /samples/ScryfallApi.WebSample/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/samples/ScryfallApi.WebSample/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /samples/ScryfallApi.WebSample/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/samples/ScryfallApi.WebSample/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /samples/ScryfallApi.WebSample/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/samples/ScryfallApi.WebSample/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /samples/ScryfallApi.WebSample/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/samples/ScryfallApi.WebSample/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /samples/ScryfallApi.WebSample/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/samples/ScryfallApi.WebSample/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css -------------------------------------------------------------------------------- /samples/ScryfallApi.WebSample/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/samples/ScryfallApi.WebSample/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map -------------------------------------------------------------------------------- /samples/ScryfallApi.WebSample/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/samples/ScryfallApi.WebSample/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css -------------------------------------------------------------------------------- /samples/ScryfallApi.WebSample/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/samples/ScryfallApi.WebSample/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map -------------------------------------------------------------------------------- /samples/ScryfallApi.WebSample/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/samples/ScryfallApi.WebSample/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /samples/ScryfallApi.WebSample/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/samples/ScryfallApi.WebSample/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /samples/ScryfallApi.WebSample/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/samples/ScryfallApi.WebSample/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /samples/ScryfallApi.WebSample/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/samples/ScryfallApi.WebSample/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /samples/ScryfallApi.WebSample/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/samples/ScryfallApi.WebSample/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js -------------------------------------------------------------------------------- /samples/ScryfallApi.WebSample/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/samples/ScryfallApi.WebSample/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map -------------------------------------------------------------------------------- /samples/ScryfallApi.WebSample/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/samples/ScryfallApi.WebSample/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js -------------------------------------------------------------------------------- /samples/ScryfallApi.WebSample/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/samples/ScryfallApi.WebSample/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map -------------------------------------------------------------------------------- /samples/ScryfallApi.WebSample/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/samples/ScryfallApi.WebSample/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /samples/ScryfallApi.WebSample/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/samples/ScryfallApi.WebSample/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map -------------------------------------------------------------------------------- /samples/ScryfallApi.WebSample/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/samples/ScryfallApi.WebSample/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /samples/ScryfallApi.WebSample/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/samples/ScryfallApi.WebSample/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /samples/ScryfallApi.WebSample/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/samples/ScryfallApi.WebSample/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt -------------------------------------------------------------------------------- /samples/ScryfallApi.WebSample/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/samples/ScryfallApi.WebSample/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /samples/ScryfallApi.WebSample/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/samples/ScryfallApi.WebSample/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /samples/ScryfallApi.WebSample/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/samples/ScryfallApi.WebSample/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /samples/ScryfallApi.WebSample/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/samples/ScryfallApi.WebSample/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /samples/ScryfallApi.WebSample/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/samples/ScryfallApi.WebSample/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /samples/ScryfallApi.WebSample/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/samples/ScryfallApi.WebSample/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /samples/ScryfallApi.WebSample/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/samples/ScryfallApi.WebSample/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /samples/ScryfallApi.WebSample/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/samples/ScryfallApi.WebSample/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /samples/ScryfallApi.WebSample/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/samples/ScryfallApi.WebSample/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /samples/ScryfallApi.WebSample/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/samples/ScryfallApi.WebSample/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /samples/ScryfallApi.WebSample/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/samples/ScryfallApi.WebSample/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /src/ScryfallApi.Client/Apis/BaseRestService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/src/ScryfallApi.Client/Apis/BaseRestService.cs -------------------------------------------------------------------------------- /src/ScryfallApi.Client/Apis/BulkData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/src/ScryfallApi.Client/Apis/BulkData.cs -------------------------------------------------------------------------------- /src/ScryfallApi.Client/Apis/Cards.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/src/ScryfallApi.Client/Apis/Cards.cs -------------------------------------------------------------------------------- /src/ScryfallApi.Client/Apis/Catalogs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/src/ScryfallApi.Client/Apis/Catalogs.cs -------------------------------------------------------------------------------- /src/ScryfallApi.Client/Apis/IBulkData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/src/ScryfallApi.Client/Apis/IBulkData.cs -------------------------------------------------------------------------------- /src/ScryfallApi.Client/Apis/ICards.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/src/ScryfallApi.Client/Apis/ICards.cs -------------------------------------------------------------------------------- /src/ScryfallApi.Client/Apis/ICatalogs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/src/ScryfallApi.Client/Apis/ICatalogs.cs -------------------------------------------------------------------------------- /src/ScryfallApi.Client/Apis/ISets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/src/ScryfallApi.Client/Apis/ISets.cs -------------------------------------------------------------------------------- /src/ScryfallApi.Client/Apis/ISymbology.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/src/ScryfallApi.Client/Apis/ISymbology.cs -------------------------------------------------------------------------------- /src/ScryfallApi.Client/Apis/Sets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/src/ScryfallApi.Client/Apis/Sets.cs -------------------------------------------------------------------------------- /src/ScryfallApi.Client/Apis/Symbology.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/src/ScryfallApi.Client/Apis/Symbology.cs -------------------------------------------------------------------------------- /src/ScryfallApi.Client/DependencyInjection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/src/ScryfallApi.Client/DependencyInjection.cs -------------------------------------------------------------------------------- /src/ScryfallApi.Client/IScryfallApiClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/src/ScryfallApi.Client/IScryfallApiClient.cs -------------------------------------------------------------------------------- /src/ScryfallApi.Client/JsonConverters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/src/ScryfallApi.Client/JsonConverters.cs -------------------------------------------------------------------------------- /src/ScryfallApi.Client/Models/BaseItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/src/ScryfallApi.Client/Models/BaseItem.cs -------------------------------------------------------------------------------- /src/ScryfallApi.Client/Models/BulkDataItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/src/ScryfallApi.Client/Models/BulkDataItem.cs -------------------------------------------------------------------------------- /src/ScryfallApi.Client/Models/Card.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/src/ScryfallApi.Client/Models/Card.cs -------------------------------------------------------------------------------- /src/ScryfallApi.Client/Models/CardFace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/src/ScryfallApi.Client/Models/CardFace.cs -------------------------------------------------------------------------------- /src/ScryfallApi.Client/Models/Catalog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/src/ScryfallApi.Client/Models/Catalog.cs -------------------------------------------------------------------------------- /src/ScryfallApi.Client/Models/Error.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/src/ScryfallApi.Client/Models/Error.cs -------------------------------------------------------------------------------- /src/ScryfallApi.Client/Models/ManaCost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/src/ScryfallApi.Client/Models/ManaCost.cs -------------------------------------------------------------------------------- /src/ScryfallApi.Client/Models/Price.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/src/ScryfallApi.Client/Models/Price.cs -------------------------------------------------------------------------------- /src/ScryfallApi.Client/Models/ResultList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/src/ScryfallApi.Client/Models/ResultList.cs -------------------------------------------------------------------------------- /src/ScryfallApi.Client/Models/SearchOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/src/ScryfallApi.Client/Models/SearchOptions.cs -------------------------------------------------------------------------------- /src/ScryfallApi.Client/Models/Set.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/src/ScryfallApi.Client/Models/Set.cs -------------------------------------------------------------------------------- /src/ScryfallApi.Client/Models/Symbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/src/ScryfallApi.Client/Models/Symbol.cs -------------------------------------------------------------------------------- /src/ScryfallApi.Client/ScryfallApi.Client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/src/ScryfallApi.Client/ScryfallApi.Client.csproj -------------------------------------------------------------------------------- /src/ScryfallApi.Client/ScryfallApiClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/src/ScryfallApi.Client/ScryfallApiClient.cs -------------------------------------------------------------------------------- /src/ScryfallApi.Client/ScryfallApiClientConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/src/ScryfallApi.Client/ScryfallApiClientConfig.cs -------------------------------------------------------------------------------- /src/ScryfallApi.Client/ScryfallApiException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/src/ScryfallApi.Client/ScryfallApiException.cs -------------------------------------------------------------------------------- /src/ScryfallApi.Client/SetTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/src/ScryfallApi.Client/SetTypes.cs -------------------------------------------------------------------------------- /tests/ScryfallApi.Client.Tests/ScryfallApi.Client.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/tests/ScryfallApi.Client.Tests/ScryfallApi.Client.Tests.csproj -------------------------------------------------------------------------------- /tests/ScryfallApi.Client.Tests/UnitTest1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gonkers/Scryfall-API-Client/HEAD/tests/ScryfallApi.Client.Tests/UnitTest1.cs --------------------------------------------------------------------------------