23 lines
525 B
C#
23 lines
525 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace ldap_cesi.Entities;
|
|
|
|
public partial class Utilisateur
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public string Nom { get; set; }
|
|
|
|
public string Prenom { get; set; }
|
|
|
|
public string MotDePasse { get; set; }
|
|
public string Email { get; set; }
|
|
|
|
public int IdRole { get; set; }
|
|
[NotMapped]
|
|
public string AccessToken { get; set; }
|
|
public virtual Role IdRoleNavigation { get; set; } = null!;
|
|
}
|