Add server api definition

This commit is contained in:
2025-05-24 19:54:06 +02:00
commit a80465c6c1
37 changed files with 3842 additions and 0 deletions

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