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

12 lines
298 B
C#
Raw Permalink Normal View History

2025-01-22 18:11:25 -05:00
using CH.Enum;
namespace CH.CQRS.Service.Energy.Options;
public class UpdateEnergyRateCommandOptions
{
public long RateId { get; set; }
2025-01-13 19:19:03 -05:00
public DateTime? StartedAt { get; set; }
public decimal? Rate { get; set; }
2025-01-13 19:19:03 -05:00
public string? Name { get; set; }
2025-01-22 18:11:25 -05:00
public Currency Currency { get; set; }
}