ThomasFransolet f09d2ae460 first commit
2019-03-18 22:09:30 +01:00

23 lines
395 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using AspNetCore.Security.Jwt;
namespace MyCore.Models
{
public class UserModel : IAuthenticationUser
{
public string Id { get; set; }
public string Password { get; set; }
public string Role { get; set; }
public DateTime DOB { get; set; }
}
}