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

23 lines
486 B
C#
Raw Normal View History

2020-05-03 00:00:35 +01:00
using System.Collections.Generic;
namespace SpotifyAPI.Web
{
public class PlaylistGetItemsRequest : RequestParams
{
[QueryParam("fields")]
public List<string> Fields { get; set; }
[QueryParam("limit")]
public int? Limit { get; set; }
[QueryParam("offset")]
public int? Offset { get; set; }
[QueryParam("market")]
public string Market { get; set; }
[QueryParam("additional_types")]
public List<string> AdditionalTypes { get; set; }
}
}