ApplicationUser.cs 370 B

1234567891011121314
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5. using Microsoft.AspNetCore.Identity.EntityFrameworkCore;
  6. namespace Winsoft.GOV.XF.WXCore.Models
  7. {
  8. // Add profile data for application users by adding properties to the ApplicationUser class
  9. public class ApplicationUser : IdentityUser
  10. {
  11. }
  12. }