Files

30 lines
644 B
C#

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 IndustrySector Sector { get; set; }
public ProjectType ProjectType { get; set; }
public string? Name { get; set; }
public string? Description { get; set; }
public ApprovalStatus Status { get; set; }
}