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

7 lines
170 B
C#
Raw Permalink Normal View History

namespace CH.CQRS.Service.Energy.Options;
2025-01-21 17:58:20 -05:00
public class AddEnergyProviderCommandOptions
{
public required string Name { get; set; }
public bool Active { get; set; }
}