18 lines
515 B
C#
18 lines
515 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Marco.Pms.Model.Dtos.Project
|
|
{
|
|
public class WorkItemDto
|
|
{
|
|
[Key]
|
|
public Guid? Id { get; set; }
|
|
public Guid WorkAreaID { get; set; }
|
|
public Guid WorkCategoryId { get; set; }
|
|
public Guid ActivityID { get; set; }
|
|
public double PlannedWork { get; set; }
|
|
public double CompletedWork { get; set; }
|
|
public Guid? ParentTaskId { get; set; }
|
|
public string? Comment { get; set; }
|
|
}
|
|
}
|