Files
IntegryControlPanel_Blazor/IntegryControlPanel/IntegryControlPanel/Data/ApplicationUser.cs

18 lines
622 B
C#

using Microsoft.AspNetCore.Identity;
namespace IntegryControlPanel.Data
{
// Add profile data for application users by adding properties to the ApplicationUser class
public class ApplicationUser : IdentityUser
{
public string? FirstName { get; set; }
public string? LastName { get; set; }
public string? DisplayName { get; set; }
public string? Department { get; set; }
public string? Title { get; set; }
public bool IsLdapUser { get; set; } = false;
public string? LdapUsername { get; set; }
public DateTime? LastLdapSync { get; set; }
}
}