using System; namespace Gestor.Model.Attributes; [AttributeUsage(AttributeTargets.All)] public class HelpAttribute : Attribute { public string Tipo { get; set; } public virtual string Description => DescriptionValue; protected string DescriptionValue { get { return Tipo; } set { Tipo = value; } } public HelpAttribute(string tipo) { Tipo = tipo; } }