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

13 lines
344 B
C#
Raw Normal View History

using Amazon.Runtime.Internal.Transform;
2025-01-13 19:19:03 -05:00
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; }
2025-01-13 19:19:03 -05:00
public Currency Currency { get; set; }
public bool Active { get; set; }
}