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

26 lines
560 B
C#

namespace PostFundManagement.Domain.Models;
public class ChangeRequest
{
public long Id { get; set; }
public long ProjectId { get; set; }
public string? Title { get; set; }
public string? Justification { get; set; }
public decimal? RevisedBudget { get; set; }
public DateTime? RevisedEndedAt { get; set; }
public ApprovalStatus Status { get; set; }
public Guid CreatedBy { get; set; }
public Guid? ApprovedBy { get; set; }
public DateTime CreatedAt { get; set; }
public DateTime? UpdatedAt { get; set; }
}