login funcional

This commit is contained in:
2024-09-09 23:27:50 -03:00
parent 3de35ba192
commit 48983ab179
24 changed files with 2404 additions and 93 deletions
+11
View File
@@ -0,0 +1,11 @@
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; }
}