using CH.Enum; namespace CH.CQRS.Service.Energy.Options; public class UpdateEnergyRateExceptionCommandOptions { public long EnergyRateExceptionId { get; set; } public decimal? EnergyThreshold { get; set; } public EnergyRateExceptionThresholdResetType ResetType { get; set; } public DateTime? StartedAt { get; set; } public DateTime? EndedAt { get; set; } }