summaryrefslogtreecommitdiff
path: root/Gestor.Common/Gestor.Common.Helpers/DefaultAttribute.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Gestor.Common/Gestor.Common.Helpers/DefaultAttribute.cs')
-rw-r--r--Gestor.Common/Gestor.Common.Helpers/DefaultAttribute.cs13
1 files changed, 13 insertions, 0 deletions
diff --git a/Gestor.Common/Gestor.Common.Helpers/DefaultAttribute.cs b/Gestor.Common/Gestor.Common.Helpers/DefaultAttribute.cs
new file mode 100644
index 0000000..552ec99
--- /dev/null
+++ b/Gestor.Common/Gestor.Common.Helpers/DefaultAttribute.cs
@@ -0,0 +1,13 @@
+using System;
+
+namespace Gestor.Common.Helpers;
+
+public class DefaultAttribute : Attribute
+{
+ public bool DefaultProperty { get; private set; }
+
+ public DefaultAttribute(bool defaultProperty)
+ {
+ DefaultProperty = defaultProperty;
+ }
+}