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

14 lines
341 B
C#

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; }
}
}