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