mirror of
https://bitbucket.org/myhomie/mycorerepository.git
synced 2025-12-06 17:51:20 +00:00
23 lines
395 B
C#
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; }
|
|
}
|
|
}
|
|
|
|
|
|
|