study-lib-backend/API/Models/User.cs

14 lines
253 B
C#
Raw Normal View History

2020-12-16 21:41:14 +01:00
using Microsoft.AspNetCore.Identity;
namespace StudyLib.API.Models
{
public class User : IdentityUser
{
public long ID { get; set; }
public string FullName { get; set; }
public string Password { get; set; }
}
}