using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tango.FSE.Procedures { /// /// Can be used to decorate a property or field in order to set their custom name when using /// /// public class UserInput : Attribute { /// /// Gets or sets the field/property custom name. /// public String Name { get; set; } /// /// Initializes a new instance of the class. /// /// The field name. public UserInput(String name) { Name = name; } } }