11 lines
337 B
C#
11 lines
337 B
C#
namespace CH.CQRS.Service.Energy.Options;
|
|
|
|
public class UpdateEnergyRateCommandOptions
|
|
{
|
|
public long RateId { get; set; }
|
|
public bool SendAlert { get; set; }
|
|
public required DateTime StartedAt { get; set; }
|
|
public DateTime? AppliedAt { get; set; }
|
|
public decimal? Rate { get; set; }
|
|
public DateTime? UpdatedAt { get; set; }
|
|
} |