namespace PostFundManagement.Domain.Models; public class Project { public long Id { get; set; } public long ProgrammeId { get; set; } public Guid CreatedBy { get; set; } public Guid? UpdatedBy { get; set; } public DateTime CreatedAt { get; set; } public DateTime? UpdatedAt { get; set; } public DateTime? StartedAt { get; set; } public DateTime? EndedAt { get; set; } public string? Name { get; set; } public string? Description { get; set; } public ApprovalStatus Status { get; set; } }