summaryrefslogtreecommitdiff
path: root/Gestor.Model/Model.Attributes/ForceLogAttribute.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Gestor.Model/Model.Attributes/ForceLogAttribute.cs')
-rw-r--r--Gestor.Model/Model.Attributes/ForceLogAttribute.cs39
1 files changed, 0 insertions, 39 deletions
diff --git a/Gestor.Model/Model.Attributes/ForceLogAttribute.cs b/Gestor.Model/Model.Attributes/ForceLogAttribute.cs
deleted file mode 100644
index a9b0f20..0000000
--- a/Gestor.Model/Model.Attributes/ForceLogAttribute.cs
+++ /dev/null
@@ -1,39 +0,0 @@
-using System;
-using System.Runtime.CompilerServices;
-
-namespace Gestor.Model.Attributes
-{
- public class ForceLogAttribute : Attribute
- {
- public virtual bool Description
- {
- get
- {
- return this.DescriptionValue;
- }
- }
-
- protected bool DescriptionValue
- {
- get
- {
- return this.Log;
- }
- set
- {
- this.Log = value;
- }
- }
-
- public bool Log
- {
- get;
- set;
- }
-
- public ForceLogAttribute(bool log = true)
- {
- this.Log = log;
- }
- }
-} \ No newline at end of file