29 lines
729 B
C#
29 lines
729 B
C#
using System;
|
|
using Volo.Abp.Application.Dtos;
|
|
|
|
namespace Erp.Platform.Intranet;
|
|
|
|
public class ProjectTaskDto : FullAuditedEntityDto<Guid>
|
|
{
|
|
public Guid? TenantId { get; set; }
|
|
|
|
public Guid? ProjectId { get; set; }
|
|
public Guid? PhaseId { get; set; }
|
|
|
|
public string Name { get; set; }
|
|
public string Description { get; set; }
|
|
|
|
public string? TaskTypeId { get; set; }
|
|
|
|
public string Priority { get; set; }
|
|
public string? StatusId { get; set; }
|
|
|
|
public Guid? EmployeeId { get; set; }
|
|
public EmployeeDto Employee { get; set; }
|
|
|
|
public DateTime StartDate { get; set; }
|
|
public DateTime EndDate { get; set; }
|
|
|
|
public int Progress { get; set; }
|
|
public bool IsActive { get; set; }
|
|
}
|