From 3d903a51dbe55407fdbb62d0f174af2506127438 Mon Sep 17 00:00:00 2001 From: Demis Bellot Date: Fri, 7 Jun 2024 01:29:58 +0800 Subject: [PATCH] Update ApplicationUser.cs --- MyApp.ServiceInterface/Data/ApplicationUser.cs | 3 --- 1 file changed, 3 deletions(-) diff --git a/MyApp.ServiceInterface/Data/ApplicationUser.cs b/MyApp.ServiceInterface/Data/ApplicationUser.cs index 4293934..d4e19cf 100644 --- a/MyApp.ServiceInterface/Data/ApplicationUser.cs +++ b/MyApp.ServiceInterface/Data/ApplicationUser.cs @@ -1,10 +1,8 @@ using Microsoft.AspNetCore.Identity; -using ServiceStack.DataAnnotations; namespace MyApp.Data; // Add profile data for application users by adding properties to the ApplicationUser class -[Alias("AspNetUsers")] public class ApplicationUser : IdentityUser { public string? FirstName { get; set; } @@ -12,4 +10,3 @@ public class ApplicationUser : IdentityUser public string? DisplayName { get; set; } public string? ProfileUrl { get; set; } } -