summaryrefslogtreecommitdiff
path: root/Gestor.Model/Gestor.Model.Common/FormaRepasse.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Gestor.Model/Gestor.Model.Common/FormaRepasse.cs')
-rw-r--r--Gestor.Model/Gestor.Model.Common/FormaRepasse.cs19
1 files changed, 19 insertions, 0 deletions
diff --git a/Gestor.Model/Gestor.Model.Common/FormaRepasse.cs b/Gestor.Model/Gestor.Model.Common/FormaRepasse.cs
new file mode 100644
index 0000000..17a59fb
--- /dev/null
+++ b/Gestor.Model/Gestor.Model.Common/FormaRepasse.cs
@@ -0,0 +1,19 @@
+using System.ComponentModel;
+using Gestor.Model.Attributes;
+using Gestor.Model.Converter;
+
+namespace Gestor.Model.Common;
+
+[TypeConverter(typeof(EnumDescriptionTypeConverter))]
+public enum FormaRepasse
+{
+ [OldValue("1")]
+ [Description("CONFORME O RECEBIMENTO")]
+ Recebimento = 1,
+ [OldValue("2")]
+ [Description("SEMPRE À VISTA")]
+ Vista,
+ [OldValue("3")]
+ [Description("SEMPRE À PRAZO")]
+ Prazo
+}