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

12 lines
337 B
C#
Raw Normal View History

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