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
@@ -0,0 +1,24 @@
namespace PostFundManagement.Domain.Models;
public class Contract
{
public long Id { get; set; }
public long AwardId { get; set; }
public string? ExternalSignatureId { get; set; }
public string? SignedDocumentUrl { get; set; }
public DateTime? EffectiveAt { get; set; }
public DateTime? ExpiresAt { get; set; }
public decimal TotalValue { get; set; }
public ContractStatus Status { get; set; }
public Guid CreatedBy { get; set; }
public DateTime CreatedAt { get; set; }
}