Spotify.NET/SpotifyAPI.Web/Models/Response/Device.cs

15 lines
378 B
C#
Raw Normal View History

2020-05-07 17:03:20 +01:00
namespace SpotifyAPI.Web
{
public class Device
{
2020-05-25 17:00:38 +01:00
public string Id { get; set; } = default!;
public bool IsActive { get; set; }
public bool IsPrivateSession { get; set; }
public bool IsRestricted { get; set; }
2020-05-25 17:00:38 +01:00
public string Name { get; set; } = default!;
public string Type { get; set; } = default!;
public int? VolumePercent { get; set; }
2020-05-07 17:03:20 +01:00
}
}
2020-05-25 17:00:38 +01:00