using System; namespace Gestor.Common.Helpers; public class DefaultAttribute : Attribute { public bool DefaultProperty { get; private set; } public DefaultAttribute(bool defaultProperty) { DefaultProperty = defaultProperty; } }