Add SupportsVolume in Device response (#971)

This commit is contained in:
XY Wang 2024-05-10 14:51:14 +08:00 committed by GitHub
parent 72bf30aad5
commit 1281ce8732
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -7,6 +7,7 @@ namespace SpotifyAPI.Web
public bool IsPrivateSession { get; set; } public bool IsPrivateSession { get; set; }
public bool IsRestricted { get; set; } public bool IsRestricted { get; set; }
public string Name { get; set; } = default!; public string Name { get; set; } = default!;
public bool SupportsVolume { get; set; }
public string Type { get; set; } = default!; public string Type { get; set; } = default!;
public int? VolumePercent { get; set; } public int? VolumePercent { get; set; }
} }