ApplicationUser.cs 248 B

1234567891011
  1. using Microsoft.AspNetCore.Identity;
  2. using System.ComponentModel.DataAnnotations;
  3. namespace bitforum.Models.User
  4. {
  5. public class ApplicationUser: IdentityUser
  6. {
  7. [MaxLength(256)]
  8. public string? FullName { get; set; }
  9. }
  10. }