17 lines
581 B
C#
17 lines
581 B
C#
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; }
|
|
} |