traidas entidades de la db
Signed-off-by: fede <federico.nicolas.polidoro@gmail.com>
This commit is contained in:
+18
-10
@@ -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>();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user