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

13 lines
393 B
C#
Raw Permalink Normal View History

2025-01-13 19:19:03 -05:00
using CH.Enum;
namespace CH.CQRS.Service.Energy.Options;
2025-01-21 17:58:20 -05:00
public class AddEnergyRateExceptionCommandOptions
{
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; }
public DateTime? StartedAt { get; set; }
public DateTime? EndedAt { get; set; }
}