Files
lux/Lux.UI/Data/ApplicationUser.cs
2025-07-18 08:39:10 +02:00

11 lines
221 B
C#

using Microsoft.AspNetCore.Identity;
namespace Lux.UI.Data
{
// Add profile data for application users by adding properties to the ApplicationUser class
public class ApplicationUser : IdentityUser
{
}
}