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

14 lines
349 B
C#
Raw Normal View History

2020-05-07 17:03:20 +01:00
namespace SpotifyAPI.Web
{
public class PlayerSkipNextRequest : RequestParams
{
/// <summary>
/// The id of the device this command is targeting. If not supplied, the users currently active device is the target.
/// </summary>
/// <value></value>
2020-05-07 17:03:20 +01:00
[QueryParam("device_id")]
2020-05-25 17:00:38 +01:00
public string? DeviceId { get; set; }
2020-05-07 17:03:20 +01:00
}
}
2020-05-25 17:00:38 +01:00