Add project files.

This commit is contained in:
Fergal Moran
2023-12-01 16:53:34 +00:00
parent 986e194ab0
commit 5679250357
71 changed files with 4224 additions and 0 deletions

10
Data/ApplicationUser.cs Normal file
View File

@@ -0,0 +1,10 @@
using Microsoft.AspNetCore.Identity;
namespace api.fergl.ie.Data
{
// Add profile data for application users by adding properties to the ApplicationUser class
public class ApplicationUser : IdentityUser
{
}
}