21 lines
513 B
C#
21 lines
513 B
C#
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; }
|
|
}
|
|
} |