Files
2026-08-15 15:06:08 +02:00

20 lines
397 B
C#

namespace PostFundManagement.Domain.Models;
public class Budget
{
public long Id { get; set; }
public long ProjectId { get; set; }
public Guid CreatedBy { get; set; }
public Guid? ApprovedBy { get; set; }
public DateTime CreatedAt { get; set; }
public DateTime? UpdatedAt { get; set; }
public string? Name { get; set; }
public decimal Amount { get; set; }
}