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