16 lines
420 B
C#
16 lines
420 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 CredencialDGA
|
|||
|
{
|
|||
|
public static string RutEmpresa { get; set; } = string.Empty;
|
|||
|
public static string RutUsuario { get; set; } = string.Empty;
|
|||
|
public static string Password { get; set; } = string.Empty;
|
|||
|
}
|
|||
|
}
|