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,20 @@
namespace MusicCast.Net.Api.Server.Models;
public class GetTagResponse
{
public int response_code { get; set; }
public Zone_list[] zone_list { get; set; }
public Input_list[] input_list { get; set; }
public class Zone_list
{
public string id { get; set; }
public int tag { get; set; }
}
public class Input_list
{
public string id { get; set; }
public int tag { get; set; }
}
}