using Microsoft.AspNetCore.Identity; using System.ComponentModel.DataAnnotations; namespace bitforum.Models.User { public class ApplicationUser: IdentityUser { [MaxLength(256)] public string? FullName { get; set; } } }