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

22 lines
472 B
C#

namespace PostFundManagement.Domain.Models;
public class Indicator
{
public long Id { get; set; }
public long ProjectId { get; set; }
public Guid CreatedBy { get; set; }
public DateTime CreatedAt { get; set; }
public string? Name { get; set; }
public UnitOfMeasure? UnitOfMeasure { get; set; }
public decimal BaselineAmount { get; set; }
public decimal TargetAmount { get; set; }
public decimal ActualAmount { get; set; }
}