Implemented models
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
namespace PostFundManagement.Domain.Models;
|
||||
|
||||
public class ComplianceItem
|
||||
{
|
||||
public long Id { get; set; }
|
||||
|
||||
public long ProjectId { get; set; }
|
||||
|
||||
public string? Title { get; set; }
|
||||
|
||||
public string? Requirements { get; set; }
|
||||
|
||||
public ApprovalStatus Status { get; set; }
|
||||
|
||||
public Guid CreatedBy { get; set; }
|
||||
|
||||
public Guid? VerifiedBy { get; set; }
|
||||
|
||||
public DateTime CreatedAt { get; set; }
|
||||
|
||||
public DateTime? VerifiedAt { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user