This repository has been archived on 2023-10-28. You can view files and clone it, but cannot push or open issues or pull requests.
pwt-0x01-ng/Models/Identity/User.cs
surtur 3de6d80f37
All checks were successful
continuous-integration/drone/push Build is passing
cleanup: remove unused usings throughout
2021-02-10 00:34:56 +01:00

12 lines
298 B
C#

using Microsoft.AspNetCore.Identity;
namespace pwt_0x01_ng.Models.Identity
{
public class User : IdentityUser<int>
{
public virtual string username {get;set;}
public virtual string password {get;set;}
public virtual string Name {get; set;}
public virtual string LastName {get; set;}
}
}