2025-01-10 15:59:51 -05:00
|
|
|
using Amazon.Runtime.Internal.Transform;
|
|
|
|
|
2025-01-09 16:14:34 -05:00
|
|
|
namespace CH.CQRS.Service.Energy.Options;
|
|
|
|
|
|
|
|
public class CreateEnergyRateCommandOptions
|
|
|
|
{
|
2025-01-10 15:59:51 -05:00
|
|
|
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; }
|
2025-01-09 16:14:34 -05:00
|
|
|
}
|