Implemented models
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
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; }
|
||||
}
|
||||
Reference in New Issue
Block a user