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