Files
MusicCast.Net/MusicCast.Net.Api.Server/Models/GetNameTextResponse.cs
2025-05-24 19:54:08 +02:00

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