From 0440c722a221b8068bbf388c1c0c51f0faff0451 Mon Sep 17 00:00:00 2001 From: Lucas Faria Mendes Date: Mon, 30 Mar 2026 14:17:46 -0300 Subject: some dlls --- Gestor.Model/Gestor.Model.Common/Categoria.cs | 49 +++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 Gestor.Model/Gestor.Model.Common/Categoria.cs (limited to 'Gestor.Model/Gestor.Model.Common/Categoria.cs') diff --git a/Gestor.Model/Gestor.Model.Common/Categoria.cs b/Gestor.Model/Gestor.Model.Common/Categoria.cs new file mode 100644 index 0000000..cf7da88 --- /dev/null +++ b/Gestor.Model/Gestor.Model.Common/Categoria.cs @@ -0,0 +1,49 @@ +using System.ComponentModel; +using Gestor.Model.Attributes; +using Gestor.Model.Converter; + +namespace Gestor.Model.Common; + +[TypeConverter(typeof(EnumDescriptionTypeConverter))] +public enum Categoria +{ + [OldValue("1")] + [Description("PICKUP")] + Pickup = 1, + [OldValue("2")] + [Description("OUTROS")] + Outros, + [OldValue("3")] + [Description("PASSEIO")] + Passeio, + [OldValue("4")] + [Description("CAMINHÃO")] + Caminhao, + [OldValue("5")] + [Description("CAMINHONETE")] + Caminhonete, + [OldValue("6")] + [Description("ÔNIBUS")] + Onibus, + [OldValue("7")] + [Description("UTILITÁRIO")] + Utilitario, + [OldValue("8")] + [Description("CARGA")] + Carga, + [OldValue("9")] + [Description("MOTOCICLETA")] + Motocicleta, + [OldValue("10")] + [Description("TAXI")] + Taxi, + [OldValue("11")] + [Description("UBER")] + Uber, + [OldValue("12")] + [Description("REBOCADOR")] + Rebocador, + [OldValue("13")] + [Description("REBOQUE/SEMI REBOQUE")] + Reboque +} -- cgit v1.2.3