13 lines
396 B
C#
13 lines
396 B
C#
using CH.Enum;
|
|
|
|
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 EnergyRateExceptionThresholdResetType ResetType { get; set; }
|
|
public DateTime? StartedAt { get; set; }
|
|
public DateTime? EndedAt { get; set; }
|
|
} |