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 CreateEnergyRateExceptionCommandOptions
|
|
|
|
{
|
2025-01-10 15:59:51 -05:00
|
|
|
public long RateId { get; set; }
|
|
|
|
public required string Name { get; set; }
|
|
|
|
public decimal EnergyThreshold { get; set; }
|
2025-01-13 19:19:03 -05:00
|
|
|
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
|
|
|
}
|