13 lines
344 B
C#
13 lines
344 B
C#
using Amazon.Runtime.Internal.Transform;
|
|
using CH.Enum;
|
|
|
|
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 Currency Currency { get; set; }
|
|
public bool Active { get; set; }
|
|
} |