ApplicationUser.cs 231 B

12345678910
  1. using Microsoft.AspNetCore.Identity;
  2. namespace ConcursoProjetos.Data
  3. {
  4. // Add profile data for application users by adding properties to the ApplicationUser class
  5. public class ApplicationUser : IdentityUser
  6. {
  7. }
  8. }