diff options
| author | Lucas Faria Mendes <lucas.fariamo08@gmail.com> | 2026-03-30 13:35:25 +0000 |
|---|---|---|
| committer | Lucas Faria Mendes <lucas.fariamo08@gmail.com> | 2026-03-30 13:35:25 +0000 |
| commit | 674ca83ba9243a9e95a7568c797668dab6aee26a (patch) | |
| tree | 4a905b3fb1d827665a34d63f67bc5559f8e7235b /Gestor.Model/Model.Common/Parentesco.cs | |
| download | gestor-674ca83ba9243a9e95a7568c797668dab6aee26a.tar.gz gestor-674ca83ba9243a9e95a7568c797668dab6aee26a.zip | |
feat: upload files
Diffstat (limited to 'Gestor.Model/Model.Common/Parentesco.cs')
| -rw-r--r-- | Gestor.Model/Model.Common/Parentesco.cs | 99 |
1 files changed, 99 insertions, 0 deletions
diff --git a/Gestor.Model/Model.Common/Parentesco.cs b/Gestor.Model/Model.Common/Parentesco.cs new file mode 100644 index 0000000..a8c9047 --- /dev/null +++ b/Gestor.Model/Model.Common/Parentesco.cs @@ -0,0 +1,99 @@ +using Gestor.Model.Attributes;
+using Gestor.Model.Converter;
+using System;
+using System.ComponentModel;
+
+namespace Gestor.Model.Common
+{
+ [TypeConverter(typeof(EnumDescriptionTypeConverter))]
+ public enum Parentesco
+ {
+ [Description("PAI")]
+ [OldValue("0")]
+ Pai,
+ [Description("FILHO")]
+ [OldValue("1")]
+ Filho,
+ [Description("MÃE")]
+ [OldValue("2")]
+ Mae,
+ [Description("IRMÃOS")]
+ [OldValue("3")]
+ Irmaos,
+ [Description("AVÓS")]
+ [OldValue("4")]
+ Avos,
+ [Description("TIOS")]
+ [OldValue("5")]
+ Tios,
+ [Description("SOBRINHOS")]
+ [OldValue("6")]
+ Sobrinhos,
+ [Description("BISAVÓS")]
+ [OldValue("7")]
+ Bisavos,
+ [Description("PRIMOS")]
+ [OldValue("8")]
+ Primos,
+ [Description("SOGRA")]
+ [OldValue("9")]
+ Sogra,
+ [Description("SOGRO")]
+ [OldValue("10")]
+ Sogro,
+ [Description("GENRO")]
+ [OldValue("11")]
+ Genro,
+ [Description("NORA")]
+ [OldValue("12")]
+ Nora,
+ [Description("CUNHADO")]
+ [OldValue("13")]
+ Cunhado,
+ [Description("CUNHADA")]
+ [OldValue("14")]
+ Cunhada,
+ [Description("CONCUNHADO")]
+ [OldValue("15")]
+ Concunhado,
+ [Description("CONCUNHADA")]
+ [OldValue("16")]
+ Concunhada,
+ [Description("PADRASTO")]
+ [OldValue("17")]
+ Padrasto,
+ [Description("MADRASTA")]
+ [OldValue("18")]
+ Madrasta,
+ [Description("ENTEADO")]
+ [OldValue("19")]
+ Enteado,
+ [Description("ENTEADA")]
+ [OldValue("20")]
+ Enteada,
+ [Description("CÔNJUGE")]
+ [OldValue("21")]
+ Conjuge,
+ [Description("SÓCIO")]
+ [OldValue("22")]
+ Socio,
+ [Description("FUNCIONÁRIO")]
+ [OldValue("23")]
+ Funcionário,
+ [Description("EX-CÔNJUGE")]
+ [OldValue("24")]
+ Exconjuge,
+ [Description("AMIGO(A)")]
+ [OldValue("25")]
+ Amigo,
+ [Description("NETO")]
+ [OldValue("26")]
+ Neto,
+ [Description("PROPRIETÁRIO DA EMPRESA")]
+ [OldValue("27")]
+ Proprietario,
+ [Description("SÍNDICO")]
+ [OldValue("28")]
+ Sindico
+ }
+}
\ No newline at end of file |