Add ApplicationUser entity.

This commit is contained in:
2019-05-27 03:00:04 +01:00
parent 5a1010ca3a
commit 9a1e00cbee
4 changed files with 42 additions and 14 deletions

View File

@@ -0,0 +1,6 @@
using Microsoft.AspNetCore.Identity;
namespace Cicm.Database.Models
{
public class ApplicationUser : IdentityUser { }
}