mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-25 15:36:26 +00:00
36 lines
621 B
C#
36 lines
621 B
C#
|
using System;
|
||
|
|
||
|
namespace SpotifyAPI.Web
|
||
|
{
|
||
|
public class ArtistsAlbumsRequest : RequestParams
|
||
|
{
|
||
|
[QueryParam("include_groups")]
|
||
|
public IncludeGroups? IncludeGroupsParam { get; set; }
|
||
|
|
||
|
[QueryParam("market")]
|
||
|
public string Market { get; set; }
|
||
|
|
||
|
[QueryParam("limit")]
|
||
|
public int? Limit { get; set; }
|
||
|
|
||
|
[QueryParam("offset")]
|
||
|
public int? Offset { get; set; }
|
||
|
|
||
|
[Flags]
|
||
|
public enum IncludeGroups
|
||
|
{
|
||
|
[String("album")]
|
||
|
Album,
|
||
|
|
||
|
[String("single")]
|
||
|
Single,
|
||
|
|
||
|
[String("appears_on")]
|
||
|
AppearsOn,
|
||
|
|
||
|
[String("compilation")]
|
||
|
Compilation
|
||
|
}
|
||
|
}
|
||
|
}
|