- using Microsoft.AspNetCore.Identity;
-
- namespace Diligent.WebAPI.Data.Entities;
-
- public class User : IdentityUser<int>
- {
- public string FirstName { get; set; }
- public string LastName { get; set; }
- public bool? IsEnabled { get; set; }
- public string? Position { get; set; }
- public string? LinkedIn { get; set; }
- public List<UserCategories> UserCategories { get; set; }
- }
|