26 lines
540 B
C#
26 lines
540 B
C#
namespace PostFundManagement.Domain.Models;
|
|
|
|
public class Issue
|
|
{
|
|
public long Id { get; set; }
|
|
|
|
public long ProjectId { get; set; }
|
|
|
|
public string? Title { get; set; }
|
|
|
|
public string? Description { get; set; }
|
|
|
|
public Priority Priority { get; set; }
|
|
|
|
public ActivityStatus Status { get; set; }
|
|
|
|
public Guid CreatedBy { get; set; }
|
|
|
|
public DateTime CreatedAt { get; set; }
|
|
|
|
public Guid? AssignedTo { get; set; }
|
|
|
|
public DateTime? ResolvedAt { get; set; }
|
|
|
|
public string? Resolution { get; set; }
|
|
} |