using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Text.Json.Serialization;
using System.Threading.Tasks;
namespace LiveForum.Code.JwtInfrastructure
{
///
/// 令牌
///
public class JwtAccessToken
{
///
/// 用户名
///
[JsonPropertyName("username")]
public string UserName { get; set; } = string.Empty;
///
/// token
///
[JsonPropertyName("token")]
public string Token { get; set; } = string.Empty;
///
/// 过期时间
///
[JsonPropertyName("expireAt")]
public DateTime ExpireAt { get; set; }
}
}