faturas_4docs/Compliance/Domain/Models/FlagTariffInformation.cs

11 lines
361 B
C#

namespace Compliance.Domain.Models
{
public class FlagTariffInformation
{
public string FlagColor { get; set; } = "GREEN";
public decimal FlagValue { get; set; }
public HashSet<string> ExemptGroups { get; set; } = [];
public bool ApplyPartialMonth { get; set; }
public int ValidFromDay { get; set; } = 1;
}
}