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

11 lines
350 B
C#
Raw Normal View History

namespace CH.CQRS.Service.Energy.Options;
public class CreateEnergyRateExceptionCommandOptions
{
public long RateId { get; set; }
public required string Name { get; set; }
public decimal EnergyThreshold { get; set; }
public string? ResetType { get; set; }
public DateTime? StartedAt { get; set; }
public DateTime? EndedAt { get; set; }
}