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

13 lines
340 B
C#

using Amazon.Runtime.Internal.Transform;
using CH.Enum;
namespace CH.CQRS.Service.Energy.Options;
public class AddEnergyRateCommandOptions
{
public long ProviderId { get; set; }
public required string Name { get; set; }
public decimal? Rate { get; set; }
public Currency Currency { get; set; }
public bool Active { get; set; }
}