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(); }