14 lines
398 B
C#
14 lines
398 B
C#
using Microsoft.AspNetCore.Identity;
|
|
|
|
namespace RobotNet.IdentityServer.Data
|
|
{
|
|
// Add profile data for application users by adding properties to the ApplicationUser class
|
|
public class ApplicationUser : IdentityUser
|
|
{
|
|
public string FullName { get; set; } = "";
|
|
public byte[]? AvatarImage { get; set; }
|
|
public string AvatarContentType { get; set; } = "";
|
|
}
|
|
|
|
}
|