aspnetcore/samples/IdentitySample.DefaultUI/Data/ApplicationUser.cs

15 lines
320 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Identity;
namespace IdentitySample.DefaultUI.Data
{
public class ApplicationUser : IdentityUser
{
public string Name { get; set; }
public int Age { get; set; }
}
}