/// <summary>
 /// Initializes a new instance of the ArgumentPropertyAttribute class
 /// </summary>
 /// <param name="argumentName">The format of the argument.</param>
 /// <param name="propertyType">The type of the argument.</param>
 public ArgumentPropertyAttribute(string argumentName, ArgumentPropertyType propertyType = ArgumentPropertyType.Standard)
 {
     this.argumentName = argumentName;
     this.propertyType = propertyType;
 }