Add server api definition
This commit is contained in:
17
MusicCast.Net.Api.Server/Models/GetStatusResponse.cs
Normal file
17
MusicCast.Net.Api.Server/Models/GetStatusResponse.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
namespace MusicCast.Net.Api.Server.Models;
|
||||
|
||||
public class GetStatusResponse
|
||||
{
|
||||
public int response_code { get; set; }
|
||||
public string power { get; set; }
|
||||
public int sleep { get; set; }
|
||||
public int volume { get; set; }
|
||||
public bool mute { get; set; }
|
||||
public int max_volume { get; set; }
|
||||
public string input { get; set; }
|
||||
public bool distribution_enable { get; set; }
|
||||
public string link_control { get; set; }
|
||||
public string link_audio_delay { get; set; }
|
||||
public string link_audio_quality { get; set; }
|
||||
public int disable_flags { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user