RobotNet/RobotNet.IdentityServer/Data/ApplicationUser.cs
2025-10-15 15:15:53 +07:00

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