10 lines
321 B
C#
10 lines
321 B
C#
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; }
|
|
} |