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

7 lines
173 B
C#
Raw Normal View History

namespace CH.CQRS.Service.Energy.Options;
public class CreateEnergyProviderCommandOptions
{
public required string Name { get; set; }
public bool Active { get; set; }
}