Add server api definition
This commit is contained in:
21
MusicCast.Net.Api.Server/Models/GetNameTextResponse.cs
Normal file
21
MusicCast.Net.Api.Server/Models/GetNameTextResponse.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
namespace MusicCast.Net.Api.Server.Models;
|
||||
|
||||
public class GetNameTextResponse
|
||||
{
|
||||
public int response_code { get; set; }
|
||||
public Zone_list[] zone_list { get; set; }
|
||||
public Input_list[] input_list { get; set; }
|
||||
public object[] sound_program_list { get; set; }
|
||||
|
||||
public class Zone_list
|
||||
{
|
||||
public string id { get; set; }
|
||||
public string text { get; set; }
|
||||
}
|
||||
|
||||
public class Input_list
|
||||
{
|
||||
public string id { get; set; }
|
||||
public string text { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user