Spotify.NET/SpotifyAPI.Web/Models/Request/PlaylistGetItemsRequest.cs
2020-05-03 01:00:35 +02:00

23 lines
486 B
C#

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; }
}
}