namespace CH.CQRS.Service.Energy.Options; public class UpdateEnergyRateCommandOptions { public long RateId { get; set; } public DateTime? StartedAt { get; set; } public decimal? Rate { get; set; } public string? Name { get; set; } }