mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-26 16:06:27 +00:00
15 lines
378 B
C#
15 lines
378 B
C#
namespace SpotifyAPI.Web
|
|
{
|
|
public class Device
|
|
{
|
|
public string Id { get; set; } = default!;
|
|
public bool IsActive { get; set; }
|
|
public bool IsPrivateSession { get; set; }
|
|
public bool IsRestricted { get; set; }
|
|
public string Name { get; set; } = default!;
|
|
public string Type { get; set; } = default!;
|
|
public int? VolumePercent { get; set; }
|
|
}
|
|
}
|
|
|