Implemented models

This commit is contained in:
2026-08-15 15:06:08 +02:00
parent cd7eb15cc4
commit a5689dd8fc
37 changed files with 729 additions and 12 deletions
+26
View File
@@ -0,0 +1,26 @@
namespace PostFundManagement.Domain.Models;
public class Award
{
public long Id { get; set; }
public long OrganisationId { get; set; }
public long ProgrammeId { get; set; }
public long? ProjectId { get; set; }
public Guid CreatedBy { get; set; }
public Guid? UpdatedBy { get; set; }
public Guid? ApprovedBy { get; set; }
public DateTime CreatedAt { get; set; }
public DateTime UpdatedAt { get; set; }
public ApprovalStatus Status { get; set; }
public decimal Amount { get; set; }
}