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; } } }