mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-25 07:26:28 +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; }
|
|
}
|
|
}
|