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; } } -