Spotify.NET/SpotifyAPI.Web/Models/Request/AlbumTracksRequest.cs
2020-05-07 22:33:29 +02:00

15 lines
281 B
C#

namespace SpotifyAPI.Web
{
public class AlbumTracksRequest : RequestParams
{
[QueryParam("market")]
public string Market { get; set; }
[QueryParam("limit")]
public int? Limit { get; set; }
[QueryParam("offset")]
public int? Offset { get; set; }
}
}