diff options
| author | Lucas Faria Mendes <lucas.fariamo08@gmail.com> | 2026-03-30 15:29:41 +0000 |
|---|---|---|
| committer | Lucas Faria Mendes <lucas.fariamo08@gmail.com> | 2026-03-30 15:29:41 +0000 |
| commit | 225aa1499e37faf9d38257caabbadc68d78b427e (patch) | |
| tree | 102bb7a40c58595348ae9d3c7076201759fe0720 /Decompiler/Gestor.Application.Helpers/Recursos.cs | |
| parent | 1f4e14b2e973ee7de337fd4866d9a5ceff5cb6d1 (diff) | |
| download | gestor-225aa1499e37faf9d38257caabbadc68d78b427e.tar.gz gestor-225aa1499e37faf9d38257caabbadc68d78b427e.zip | |
decompiler.com
Diffstat (limited to 'Decompiler/Gestor.Application.Helpers/Recursos.cs')
| -rw-r--r-- | Decompiler/Gestor.Application.Helpers/Recursos.cs | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/Decompiler/Gestor.Application.Helpers/Recursos.cs b/Decompiler/Gestor.Application.Helpers/Recursos.cs new file mode 100644 index 0000000..2c62785 --- /dev/null +++ b/Decompiler/Gestor.Application.Helpers/Recursos.cs @@ -0,0 +1,70 @@ +using System; +using System.Collections.Generic; +using System.Net; +using Agger.Registro; +using Gestor.Model.Domain.Common; +using Gestor.Model.Domain.Configuracoes; +using Gestor.Model.Domain.Ferramentas; +using Gestor.Model.Domain.Financeiro; +using Gestor.Model.Domain.Seguros; + +namespace Gestor.Application.Helpers; + +public static class Recursos +{ + public const string AppStore = "https://apps.apple.com/br/app/agger-mobile/id1463091598"; + + public const string PlayStore = "https://play.google.com/store/apps/details?id=br.com.aggermobile&hl=pt&gl=US"; + + public const int DefaultMaxSize = 14336; + + public static List<string> Parametros { get; set; } + + public static Usuario Usuario { get; set; } + + public static Empresa Empresa { get; set; } + + public static List<Empresa> Empresas { get; set; } + + public static List<Seguradora> Seguradoras { get; set; } + + public static List<Parceiro> Parceiros { get; set; } + + public static List<ConfigExtratoImport> Descricao { get; set; } + + public static List<Estipulante> Estipulantes { get; set; } + + public static List<Ramo> Ramos { get; set; } + + public static List<Produto> Produtos { get; set; } + + public static List<Status> Status { get; set; } + + public static List<CoberturaPadrao> Coberturas { get; set; } + + public static List<TipoVendedor> TipoVendedor { get; set; } + + public static List<Vendedor> Vendedores { get; set; } + + public static List<BancosContas> BancosContas { get; set; } + + public static List<Usuario> Usuarios { get; set; } + + public static List<TipoDeTarefa> TiposTarefa { get; set; } + + public static List<StatusDeProspeccao> StatusProspeccao { get; set; } + + public static Uri WhatsAppLink { get; } = new Uri("https://api.whatsapp.com/send?"); + + + public static Uri ApiArquivo { get; } = Address.ApiArquivo; + + + public static List<Fabricante> Fabricantes { get; set; } + + public static List<ConfiguracaoSistema> Configuracoes { get; set; } + + public static IPHostEntry Host { get; set; } + + public static string Registrar { get; set; } +} |