#pragma warning disable CS1591 // Missing XML comment for publicly visible type or member public Task <ResultList <Card> > Get(int page) => _restService.GetAsync <ResultList <Card> >($"/cards?page={page}");
/// <summary> /// Retrieve all card symbols /// </summary> /// <returns></returns> public Task <ResultList <Symbol> > Get() => _restService.GetAsync <ResultList <Symbol> >("/symbology");
/// <summary> /// Returns a List object of all Sets on Scryfall. /// </summary> /// <returns></returns> public Task <ResultList <Set> > Get() => _restService.GetAsync <ResultList <Set> >("/sets");
#pragma warning disable CS1591 // Missing XML comment for publicly visible type or member public async Task <string[]> ListCardNames() => (await _restService.GetAsync <Catalog>("/catalog/card-names").ConfigureAwait(false)).Data;