17 lines
357 B
C#
17 lines
357 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace Shared.Utils.Variables_Entorno
|
|||
|
{
|
|||
|
public class Credenciales_DGA
|
|||
|
{
|
|||
|
public String RutEmpresa { get; set; }
|
|||
|
public String RutUsuario { get; set; }
|
|||
|
public String Password { get; set; }
|
|||
|
|
|||
|
}
|
|||
|
}
|