11 lines
382 B
C#
11 lines
382 B
C#
public class Usuario
|
|
{
|
|
public long Dni { get; set; }
|
|
public long Cuil { get; set; }
|
|
public string Nombre { get; set; } = null!;
|
|
public string Apellido { get; set; } = null!;
|
|
public string Email { get; set; } = null!;
|
|
public string Celular { get; set; } = null!;
|
|
public string Domicilio { get; set; } = null!;
|
|
public byte[]? Contrasena { get; set; }
|
|
} |