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

7 lines
177 B
C#
Raw Normal View History

namespace CH.CQRS.Service.Energy.Options;
public class UpdateEnergyProviderCommandOptions
{
public long ProviderId { get; set; }
public required string Name { get; set; }
}