Integracion_DGA/SHARED/DTO/VariablesEntorno/NexusApiUrl.cs

12 lines
433 B
C#

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;
}
}