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