16 lines
368 B
C#
16 lines
368 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 ActivityID { get; set; }
|
|
public int PlannedWork { get; set; }
|
|
public int CompletedWork { get; set; }
|
|
}
|
|
}
|