17 lines
464 B
C#
17 lines
464 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Marco.Pms.Model.Dtos.Project
|
|
{
|
|
public class WorkItemDot
|
|
{
|
|
[Key]
|
|
public Guid? Id { get; set; }
|
|
public Guid WorkAreaID { get; set; }
|
|
public Guid WorkCategoryId { get; set; }
|
|
public Guid? ParentTaskId { get; set; }
|
|
public Guid ActivityID { get; set; }
|
|
public int PlannedWork { get; set; }
|
|
public int CompletedWork { get; set; }
|
|
}
|
|
}
|