7 lines
177 B
C#
7 lines
177 B
C#
namespace CH.CQRS.Service.Energy.Options;
|
|
|
|
public class UpdateEnergyProviderCommandOptions
|
|
{
|
|
public long ProviderId { get; set; }
|
|
public required string Name { get; set; }
|
|
} |