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; }
|
|
|
|
public decimal EnergyThreshold { get; set; }
|
|
|
|
public string? ResetType { get; set; }
|
|
|
|
public DateTime? StartedAt { get; set; }
|
|
|
|
public DateTime? EndedAt { get; set; }
|
2025-01-09 16:14:34 -05:00
|
|
|
}
|