Skip to content

Commit

Permalink
Update ApplicationUser.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
mythz committed Jun 6, 2024
1 parent b58a308 commit 3d903a5
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions MyApp.ServiceInterface/Data/ApplicationUser.cs
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
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; }
public string? LastName { get; set; }
public string? DisplayName { get; set; }
public string? ProfileUrl { get; set; }
}

0 comments on commit 3d903a5

Please sign in to comment.