traidas entidades de la db

Signed-off-by: fede <federico.nicolas.polidoro@gmail.com>
This commit is contained in:
2024-10-19 18:00:26 -03:00
parent ceffbf941e
commit 13ea698572
28 changed files with 600 additions and 2854 deletions
+18 -10
View File
@@ -1,11 +1,19 @@
public class Usuario
using System;
using System.Collections.Generic;
namespace Entidades;
public partial 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; }
}
public int id { get; set; }
public string email { get; set; } = null!;
public byte[] contraseña { get; set; } = null!;
public string token { get; set; } = null!;
public virtual ICollection<Cliente> Clientes { get; set; } = new List<Cliente>();
public virtual ICollection<Grupo> idgrupos { get; set; } = new List<Grupo>();
}