mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-25 15:36:26 +00:00
24 lines
545 B
C#
24 lines
545 B
C#
namespace SpotifyAPI.Web
|
|
{
|
|
public class PlaylistReorderItemsRequest : RequestParams
|
|
{
|
|
public PlaylistReorderItemsRequest(int rangeStart, int insertBefore)
|
|
{
|
|
RangeStart = rangeStart;
|
|
InsertBefore = insertBefore;
|
|
}
|
|
|
|
[BodyParam("range_start")]
|
|
public int RangeStart { get; set; }
|
|
|
|
[BodyParam("insert_before")]
|
|
public int InsertBefore { get; set; }
|
|
|
|
[BodyParam("range_length")]
|
|
public int? RangeLength { get; set; }
|
|
|
|
[BodyParam("snapshot_id")]
|
|
public string SnapshotId { get; set; }
|
|
}
|
|
}
|