12 lines
337 B
C#
12 lines
337 B
C#
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; }
|
|
} |