14 lines
468 B
C#
14 lines
468 B
C#
namespace Marco.Pms.Model.MongoDBModels
|
|
{
|
|
public class WorkAreaInfoMongoDB
|
|
{
|
|
public string ProjectId { get; set; } = string.Empty;
|
|
public string? ProjectName { get; set; }
|
|
public BuildingMongoDBVM? Building { get; set; }
|
|
public FloorMongoDBVM? Floor { get; set; }
|
|
public WorkAreaMongoDB? WorkArea { get; set; }
|
|
public double CompletedWork { get; set; }
|
|
public double PlannedWork { get; set; }
|
|
}
|
|
}
|