22 lines
461 B
C#
22 lines
461 B
C#
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; }
|
|
} |