Spotify.NET/SpotifyAPI.Web/Models/Request/AlbumTracksRequest.cs

15 lines
281 B
C#
Raw Normal View History

2020-05-07 21:33:29 +01:00
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; }
}
}