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