19 lines
550 B
C#
19 lines
550 B
C#
|
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;
|
|||
|
|
|||
|
}
|
|||
|
}
|