Integracion_DGA/SHARED/DTO/VariablesEntorno/CredencialDGA.cs

11 lines
366 B
C#
Raw Normal View History

namespace Shared.DTO.VariablesEntorno
2025-07-01 09:59:59 -04:00
{
public static class CredencialDGA
{
public static string RutEsval { get; set; } = string.Empty;
public static string RutAv { get; set; } = string.Empty;
2025-07-01 09:59:59 -04:00
public static string RutUsuario { get; set; } = string.Empty;
public static string Password { get; set; } = string.Empty;
}
}