using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace FrontendWebApi.Jwt
{
public class UserInfo
{
///
/// 門店代號
///
public int CustomerNo { get; set; }
///
/// 群組名稱
///
public string AreaCode { get; set; }
///
/// 使用者名稱
///
public string Username { get; set; }
///
/// 密碼
///
public string Password { get; set; }
}
public class JwtLogin
{
public string userinfo_guid { get; set; }
public string account { get; set; }
public string full_name { get; set; }
public string email { get; set; }
}
public class JwtGet : JwtLogin
{
public int nbf { get; set; }
public int exp { get; set; }
}
}