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; } }