2025-01-13 19:19:03 -05:00
|
|
|
using CH.Enum;
|
|
|
|
|
2025-01-09 16:14:34 -05:00
|
|
|
namespace CH.CQRS.Service.Energy.Options;
|
|
|
|
|
|
|
|
public class UpdateEnergyRateExceptionCommandOptions
|
|
|
|
{
|
2025-01-10 15:59:51 -05:00
|
|
|
public long EnergyRateExceptionId { get; set; }
|
2025-01-13 19:19:03 -05:00
|
|
|
public decimal? EnergyThreshold { get; set; }
|
|
|
|
public EnergyRateExceptionThresholdResetType ResetType { get; set; }
|
2025-01-10 15:59:51 -05:00
|
|
|
public DateTime? StartedAt { get; set; }
|
|
|
|
public DateTime? EndedAt { get; set; }
|
2025-01-09 16:14:34 -05:00
|
|
|
}
|