namespace LocationsApi.Models; public class VisibleLocationResponse { public string? Id { get; set; } public string Name { get; set; } = string.Empty; public Coord Coord { get; set; } = new(); public string BiomeKey { get; set; } = "plains"; public VisibleLocationObjectResponse? LocationObject { get; set; } public List FloorItems { get; set; } = []; }