18 lines
509 B
C#
18 lines
509 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 ActivityID { get; set; }
|
|
public int PlannedWork { get; set; }
|
|
public int CompletedWork { get; set; }
|
|
public Guid? ParentTaskId { get; set; }
|
|
public string? Comment { get; set; }
|
|
}
|
|
}
|