12 lines
368 B
C#
12 lines
368 B
C#
using CH.Enum;
|
|
|
|
namespace CH.CQRS.Service.Energy.Options;
|
|
|
|
public class UpdateEnergyRateExceptionCommandOptions
|
|
{
|
|
public long EnergyRateExceptionId { get; set; }
|
|
public decimal? EnergyThreshold { get; set; }
|
|
public EnergyRateExceptionThresholdResetType ResetType { get; set; }
|
|
public DateTime? StartedAt { get; set; }
|
|
public DateTime? EndedAt { get; set; }
|
|
} |