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