namespace Marco.Pms.Model.MongoDBModels { public class BuildingMongoDB { public string Id { get; set; } = string.Empty; public string? BuildingName { get; set; } public string? Description { get; set; } public double PlannedWork { get; set; } public double CompletedWork { get; set; } public string ProjectId { get; set; } = string.Empty; public List Floors { get; set; } = new List(); } public class BuildingMongoDBVM { public string Id { get; set; } = string.Empty; public string? BuildingName { get; set; } public string? Description { get; set; } public double PlannedWork { get; set; } public double CompletedWork { get; set; } public string ProjectId { get; set; } = string.Empty; } }