Integracion_DGA/SHARED/DTO/VariablesEntorno/NexusApiUrl.cs

13 lines
433 B
C#
Raw Normal View History

namespace Shared.DTO.VariablesEntorno
2025-07-01 09:59:59 -04:00
{
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;
}
}