mirror of
https://github.com/fergalmoran/api.fergl.ie.git
synced 2025-12-22 17:29:14 +00:00
11 lines
218 B
C#
11 lines
218 B
C#
using Microsoft.AspNetCore.Identity;
|
|
|
|
namespace Ferglie.Api.Data
|
|
{
|
|
// Add profile data for application users by adding properties to the ApplicationUser class
|
|
public class ApplicationUser : IdentityUser
|
|
{
|
|
}
|
|
|
|
}
|