drinkrate/DrinkRateAPI/DbEntities/DbApplicationUser.cs

8 lines
No EOL
188 B
C#

using Microsoft.AspNetCore.Identity;
namespace DrinkRateAPI.DbEntities;
public class DbApplicationUser : IdentityUser<Guid>
{
public virtual DbUserProfile UserProfile { get; set; }
}