8 lines
216 B
C#
8 lines
216 B
C#
using Microsoft.AspNetCore.Identity;
|
|
|
|
namespace StandManager.Domain.Entita;
|
|
|
|
// Add profile data for application users by adding properties to the ApplicationUser class
|
|
public class ApplicationUser : IdentityUser
|
|
{
|
|
} |