cambios variables de ambiente

This commit is contained in:
bcastrogallardo 2025-07-01 09:59:59 -04:00
parent 222d5fdc08
commit 0d67a44d36
20 changed files with 261 additions and 297 deletions

View file

@ -0,0 +1,18 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Shared.DTO.VariablesEntorno
{
public static class NexusApiUrl
{
public static string ApiUrl { get; set; } = string.Empty;
public static string ApiKey { get; set; } = string.Empty;
public static string Version { get; set; } = string.Empty;
public static string DataSource { get; set; } = string.Empty;
public static string Resolution { get; set; } = string.Empty;
}
}