17 lines
507 B
C#
17 lines
507 B
C#
namespace Marco.Pms.Model.MongoDBModels.Project
|
|
{
|
|
public class WorkAreaMongoDB
|
|
{
|
|
public string Id { get; set; } = string.Empty;
|
|
public string FloorId { get; set; } = string.Empty;
|
|
public string? AreaName { get; set; }
|
|
public double PlannedWork { get; set; }
|
|
public double CompletedWork { get; set; }
|
|
}
|
|
public class WorkAreaMongoDBVM
|
|
{
|
|
public string Id { get; set; } = string.Empty;
|
|
public string? AreaName { get; set; }
|
|
}
|
|
}
|