File size: 1,178 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
using System;
using System.Collections.Generic;
using TaskTrackingSystem.Shared.Enums;

namespace TaskTrackingSystem.Database.AppDbContextModels;

public partial class Issue
{
    public long Id { get; set; }

    public long TaskId { get; set; }

    public string Title { get; set; } = null!;

    public string? Description { get; set; }

    public long? AssignedTo { 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 long? CreatedBy { get; set; }

    public DateTime? UpdatedAt { get; set; }

    public long? UpdatedBy { get; set; }

    public bool IsDeleted { get; set; }

    public virtual User? AssignedToNavigation { get; set; }

    public virtual Task Task { get; set; } = null!;
}