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

33 lines
897 B
C#
Raw Normal View History

2020-05-02 21:48:21 +01:00
using System.Collections.Generic;
using Newtonsoft.Json;
namespace SpotifyAPI.Web
{
public class PlaylistRemoveItemsRequest : RequestParams
{
public PlaylistRemoveItemsRequest(IList<Item> tracks)
{
Ensure.ArgumentNotNullOrEmptyList(tracks, nameof(tracks));
Tracks = tracks;
}
2020-05-02 21:48:21 +01:00
[BodyParam("tracks")]
public IList<Item> Tracks { get; }
2020-05-02 21:48:21 +01:00
[BodyParam("snapshot_id")]
public string SnapshotId { get; set; }
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1034")]
2020-05-02 21:48:21 +01:00
public class Item
{
[JsonProperty("uri", NullValueHandling = NullValueHandling.Ignore)]
2020-05-02 21:48:21 +01:00
public string Uri { get; set; }
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227")]
[JsonProperty("positions", NullValueHandling = NullValueHandling.Ignore)]
public List<int> Positions { get; set; }
2020-05-02 21:48:21 +01:00
}
}
}