16 lines
352 B
C#
16 lines
352 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 SubterraneaApiUrl
|
|||
|
{
|
|||
|
public static string BaseUrl { get; set; } = string.Empty;
|
|||
|
public static string EndPoint { get; set; } = string.Empty;
|
|||
|
|
|||
|
}
|
|||
|
}
|