[Cmdlet("New", "PlcUsernamePasswordAuthentication")]
[OutputType(new Type[] { typeof(PlcUsernamePasswordAuthentication) })]
public class NewPlcUsernamePasswordAuthenticationCmdletCommand : PLCOnNetPSCmdlet
[Parameter(Mandatory = true, Position = 0, ValueFromPipeline = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The password to use to connect to PLC")]
public string Password { get; set; }
[Parameter(Mandatory = true, Position = 0, ValueFromPipeline = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The username to use to connect to PLC")]
public string Username { get; set; }