Files
pfm/PostFundManagement.Domain/Models/Disbursement.cs
T
2026-08-15 15:06:08 +02:00

22 lines
455 B
C#

namespace PostFundManagement.Domain.Models;
public class Disbursement
{
public long Id { get; set; }
public long ProjectId { get; set; }
public long? MilestoneId { get; set; }
public Guid CreatedBy { get; set; }
public Guid? UpdatedBy { get; set; }
public DateTime CreatedAt { get; set; }
public DateTime? UpdatedAt { get; set; }
public decimal Amount { get; set; }
public ApprovalStatus Status { get; set; }
}