16 lines
566 B
C#
16 lines
566 B
C#
namespace Marco.Pms.Model.MongoDBModels
|
|
{
|
|
public class WorkItemMongoDB
|
|
{
|
|
public string? Id { get; set; }
|
|
public string? WorkAreaId { get; set; }
|
|
public ActivityMasterMongoDB? ActivityMaster { get; set; }
|
|
public WorkCategoryMasterMongoDB? WorkCategoryMaster { get; set; }
|
|
public string? ParentTaskId { get; set; }
|
|
public double PlannedWork { get; set; }
|
|
public double CompletedWork { get; set; }
|
|
public string? Description { get; set; }
|
|
public DateTime TaskDate { get; set; }
|
|
}
|
|
}
|