namespace PostFundManagement.Domain.Models; public class Risk { public long Id { get; set; } public long ProjectId { get; set; } public Guid CreatedBy { get; set; } public DateTime CreatedAt { get; set; } public RiskLikelihood Likelihood { get; set; } public RiskImpact Impact { get; set; } public string? Name { get; set; } public string? Description { get; set; } }