namespace LocationsApi.Models; public class VisibleLocationObjectResponse { public string Id { get; set; } = string.Empty; public string ObjectType { get; set; } = string.Empty; public string ObjectKey { get; set; } = string.Empty; public string Name { get; set; } = string.Empty; public VisibleLocationObjectStateResponse State { get; set; } = new(); }