Spotify.NET/SpotifyAPI.Web/Models/Request/AlbumTracksRequest.cs
2020-05-25 18:00:47 +02:00

16 lines
283 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; }
}
}