22 lines
452 B
C#
22 lines
452 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 DateTime? ResolvedAt { get; set; }
|
|
} |