22 lines
760 B
C#
22 lines
760 B
C#
namespace Marco.Pms.Model.MongoDBModels.Project
|
|
{
|
|
public class FloorMongoDB
|
|
{
|
|
public string Id { get; set; } = string.Empty;
|
|
public string BuildingId { get; set; } = string.Empty;
|
|
public string? FloorName { get; set; }
|
|
public double PlannedWork { get; set; }
|
|
public double CompletedWork { get; set; }
|
|
public List<WorkAreaMongoDB> WorkAreas { get; set; } = new List<WorkAreaMongoDB>();
|
|
}
|
|
|
|
public class FloorMongoDBVM
|
|
{
|
|
public string Id { get; set; } = string.Empty;
|
|
public string BuildingId { get; set; } = string.Empty;
|
|
public string? FloorName { get; set; }
|
|
public double PlannedWork { get; set; }
|
|
public double CompletedWork { get; set; }
|
|
}
|
|
}
|