public DataProcessorPropertyInfo(PropertyInfo propertyInfo, IDataProcessor owner, InputAttribute inputAttribute)
 {
     Owner         = owner;
     Name          = inputAttribute.Name;
     Description   = inputAttribute.Description;
     Required      = inputAttribute.Required;
     Direction     = DataProcessorPropertyDirection.Input;
     _propertyInfo = propertyInfo;
 }
 internal InputInfo(InputAttribute inputAttribute, PropertyInfo property, DataProcessorInfo dataProcessor) : base(inputAttribute, property, dataProcessor)
 {
     Required = inputAttribute.Required;
 }