namespace PostFundManagement.Domain.Models; public class Evidence { public long Id { get; set; } public long ProjectId { get; set; } public long MilestoneId { get; set; } public long IndicatorId { get; set; } public long ActivityId { get; set; } public Guid CreatedBy { get; set; } public Guid? UpdatedBy { get; set; } public DateTime CreatedAt { get; set; } public DateTime? UpdatedAt { get; set; } public int Version { get; set; } public EvidenceType Type { get; set; } public string? DocumentUrl { get; set; } public ApprovalStatus Status { get; set; } }