constellation-api/CH.CQRS/Service/Energy/Options/UpdateEnergyRateCommandOptions.cs

12 lines
298 B
C#

using CH.Enum;
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; }
public Currency Currency { get; set; }
}