Spaces:
Running
Running
File size: 1,186 Bytes
c7beb09 4671199 c7beb09 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | using System;
using TaskTrackingSystem.Shared.Enums;
namespace TaskTrackingSystem.Shared.Models.Issue
{
public class IssueDto
{
public long Id { get; set; }
public long TaskId { get; set; }
public string TaskTitle { get; set; } = string.Empty;
public long ProjectId { get; set; }
public string ProjectName { get; set; } = string.Empty;
public string Title { get; set; } = string.Empty;
public string? Description { get; set; }
public long? AssignedTo { get; set; }
public string? AssignedToName { get; set; }
public decimal? EstimatedHours { get; set; }
public decimal? ActualHours { get; set; }
public string? DelayReason { get; set; }
public bool IsBlocked { get; set; }
public string? BlockedBy { get; set; }
public int EscalationLevel { get; set; }
public DateTime StartDate { get; set; }
public DateTime DueDate { get; set; }
public AppTaskStatus StatusId { get; set; }
public TaskPriority PriorityId { get; set; }
public DateTime CreatedAt { get; set; }
public DateTime? UpdatedAt { get; set; }
}
}
|