7 lines
173 B
C#
7 lines
173 B
C#
namespace CH.CQRS.Service.Energy.Options;
|
|
|
|
public class CreateEnergyProviderCommandOptions
|
|
{
|
|
public required string Name { get; set; }
|
|
public bool Active { get; set; }
|
|
} |