summaryrefslogtreecommitdiff
path: root/Gestor.Common/Gestor.Common.Helpers/HiddenAttribute.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Gestor.Common/Gestor.Common.Helpers/HiddenAttribute.cs')
-rw-r--r--Gestor.Common/Gestor.Common.Helpers/HiddenAttribute.cs8
1 files changed, 8 insertions, 0 deletions
diff --git a/Gestor.Common/Gestor.Common.Helpers/HiddenAttribute.cs b/Gestor.Common/Gestor.Common.Helpers/HiddenAttribute.cs
new file mode 100644
index 0000000..c664526
--- /dev/null
+++ b/Gestor.Common/Gestor.Common.Helpers/HiddenAttribute.cs
@@ -0,0 +1,8 @@
+using System;
+
+namespace Gestor.Common.Helpers;
+
+[AttributeUsage(AttributeTargets.All)]
+public class HiddenAttribute : Attribute
+{
+}