Exemple #1
0
 /// <summary>
 /// Gets a list of up to 250 of the shop's themes.
 /// </summary>
 public virtual async Task <IEnumerable <Entities.Theme> > ListAsync(ThemeListFilter filter = null, CancellationToken cancellationToken = default)
 {
     return(await ExecuteGetAsync <IEnumerable <Entities.Theme> >("themes.json", "themes", filter, cancellationToken));
 }
 /// <summary>
 /// Gets a list of up to 250 of the shop's themes.
 /// </summary>
 public virtual async Task <IEnumerable <Theme> > ListAsync(ThemeListFilter filter = null)
 {
     return(await ExecuteGetAsync <IEnumerable <Theme> >("themes.json", "themes", filter));
 }