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

10 lines
321 B
C#
Raw Normal View History

namespace CH.CQRS.Service.Energy.Options;
public class UpdateEnergyRateExceptionCommandOptions
{
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; }
}