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

16 lines
285 B
C#

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