constellation-api/CH.CQRS/Service/Energy/Options/UpdateEnergyRateExceptionCommandOptions.cs

12 lines
368 B
C#
Raw Normal View History

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