Files
Flow/App/App/Data/ApplicationUser.cs
2025-11-27 13:11:19 +01:00

11 lines
218 B
C#

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