19 lines
593 B
C#
19 lines
593 B
C#
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 List<FloorMongoDB>? Floors { get; set; }
|
|
}
|
|
public class BuildingMongoDBVM
|
|
{
|
|
public string Id { get; set; } = string.Empty;
|
|
public string? Name { get; set; }
|
|
public string? Description { get; set; }
|
|
}
|
|
}
|