using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Aiwaz.Resources.Attributes { public class CreationParametersAttribute : System.Attribute { public string Description { get; protected set; } public CreationParametersAttribute(string description) { this.Description = description; } } }