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

14 lines
341 B
C#
Raw Normal View History

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