summaryrefslogtreecommitdiff
path: root/Codemerx/Gestor.Model/Model.Common/Utilizacao.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Codemerx/Gestor.Model/Model.Common/Utilizacao.cs')
-rw-r--r--Codemerx/Gestor.Model/Model.Common/Utilizacao.cs18
1 files changed, 18 insertions, 0 deletions
diff --git a/Codemerx/Gestor.Model/Model.Common/Utilizacao.cs b/Codemerx/Gestor.Model/Model.Common/Utilizacao.cs
new file mode 100644
index 0000000..17860c0
--- /dev/null
+++ b/Codemerx/Gestor.Model/Model.Common/Utilizacao.cs
@@ -0,0 +1,18 @@
+using Gestor.Model.Attributes;
+using Gestor.Model.Converter;
+using System;
+using System.ComponentModel;
+
+namespace Gestor.Model.Common
+{
+ [TypeConverter(typeof(EnumDescriptionTypeConverter))]
+ public enum Utilizacao
+ {
+ [Description("RESIDENCIAL")]
+ [OldValue("1")]
+ Residencial = 1,
+ [Description("COMERCIAL")]
+ [OldValue("2")]
+ Comercial = 2
+ }
+} \ No newline at end of file