[Cmdlet("New", "KNetProducer")]
[OutputType(new Type[] { typeof(KNetProducer<,>) })]
public class NewKNetProducerCmdletCommand : KNetPSCmdlet
[Parameter(Mandatory = true, Position = 2, ValueFromPipelineByPropertyName = true, HelpMessage = "The configuration to be used as a ProducerConfigBuilder object")]
public ProducerConfigBuilder Configuration { get; set; }
[Parameter(Mandatory = true, Position = 0, ValueFromPipeline = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The dotnet class of the key")]
public string KeyClass { get; set; }
[Parameter(Mandatory = true, Position = 1, ValueFromPipeline = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The dotnet class of the value")]
public string ValueClass { get; set; }