12 lines
282 B
C#
12 lines
282 B
C#
|
|
namespace Entidades
|
|
{
|
|
public class Cliente
|
|
{
|
|
public string Cuit { get; set; }
|
|
public string Nombre { get; set; }
|
|
public string Apellido { get; set; }
|
|
public string Direccion { get; set; }
|
|
public string Correo { get; set; }
|
|
}
|
|
} |