erp-platform/api/src/Erp.Platform.Application.Contracts/Intranet/ProjectTaskDto.cs

30 lines
729 B
C#
Raw Normal View History

2025-12-13 14:51:35 +00:00
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; }
}