File size: 979 Bytes
3418204
 
 
 
 
 
 
 
 
 
 
 
 
ecb51fa
3418204
 
 
4671199
 
 
 
 
3418204
 
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
using System;

namespace TaskTrackingSystem.Shared.Models.Report
{
    public class OverdueCriticalTaskDto
    {
        public long TaskId { get; set; }
        public string Title { get; set; } = string.Empty;
        public string? Description { get; set; }
        public string ProjectName { get; set; } = string.Empty;
        public string StatusName { get; set; } = string.Empty;
        public string PriorityName { get; set; } = string.Empty;
        public string? AssignedTo { get; set; }
        public long? AssignedToUserId { get; set; }
        public DateTime DueDate { get; set; }
        public int DaysOverdue { get; set; }
        public DateTime CreatedAt { get; set; }
        public int OverdueIssues { get; set; }
        public string DelayReason { get; set; } = string.Empty;
        public string BlockedBy { get; set; } = string.Empty;
        public int EscalationLevel { get; set; }
        public string RecordType { get; set; } = "Task";
    }
}