mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-25 23:46:27 +00:00
27 lines
482 B
C#
27 lines
482 B
C#
|
namespace SpotifyAPI.Web
|
||
|
{
|
||
|
public class PersonalizationTopRequest : RequestParams
|
||
|
{
|
||
|
[QueryParam("limit")]
|
||
|
public int? Limit { get; set; }
|
||
|
|
||
|
[QueryParam("offset")]
|
||
|
public int? Offset { get; set; }
|
||
|
|
||
|
[QueryParam("time_range")]
|
||
|
public TimeRange? TimeRangeParam { get; set; }
|
||
|
|
||
|
public enum TimeRange
|
||
|
{
|
||
|
[String("long_term")]
|
||
|
LongTerm,
|
||
|
|
||
|
[String("medium_term")]
|
||
|
MediumTerm,
|
||
|
|
||
|
[String("short_term")]
|
||
|
ShortTerm
|
||
|
}
|
||
|
}
|
||
|
}
|