using Microsoft.AspNetCore.Identity; namespace Diligent.WebAPI.Data.Entities; public class User : IdentityUser { public string FirstName { get; set; } public string LastName { get; set; } public List Comments { get; set; } public bool? IsEnabled { get; set; } public List Processes { get; set; } = new(); public string? Position { get; set; } public string? LinkedIn { get; set; } public List UserCategories { get; set; } }