2016-09-06 17:09:19 -07:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using Microsoft.AspNetCore.Identity.EntityFrameworkCore;
|
|
|
|
|
|
2016-09-07 13:52:26 -07:00
|
|
|
|
namespace Microsoft.eShopOnContainers.WebMVC.Models
|
2016-09-06 17:09:19 -07:00
|
|
|
|
{
|
|
|
|
|
// Add profile data for application users by adding properties to the ApplicationUser class
|
|
|
|
|
public class ApplicationUser : IdentityUser
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
}
|