9 lines
208 B
C#
9 lines
208 B
C#
using Microsoft.AspNetCore.Identity;
|
|
|
|
namespace WorkTracker.Data;
|
|
|
|
// Add profile data for application users by adding properties to the ApplicationUser class
|
|
public class ApplicationUser : IdentityUser
|
|
{
|
|
}
|
|
|