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

14 lines
323 B
C#

namespace MusicCast.Net.Api.Server.Models;
public class GetLocationInfoResponse
{
public int response_code { get; set; }
public string id { get; set; }
public string name { get; set; }
public Zone_list zone_list { get; set; }
public class Zone_list
{
public bool main { get; set; }
}
}