mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-25 23:46:27 +00:00
19 lines
358 B
C#
19 lines
358 B
C#
|
namespace SpotifyAPI.Web
|
||
|
{
|
||
|
public class PlayerAddToQueueRequest : RequestParams
|
||
|
{
|
||
|
public PlayerAddToQueueRequest(string uri)
|
||
|
{
|
||
|
Ensure.ArgumentNotNullOrEmptyString(uri, nameof(uri));
|
||
|
|
||
|
Uri = uri;
|
||
|
}
|
||
|
|
||
|
[QueryParam("uri")]
|
||
|
public string Uri { get; }
|
||
|
|
||
|
[QueryParam("device_id")]
|
||
|
public string DeviceId { get; set; }
|
||
|
}
|
||
|
}
|