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