using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Text.Json.Serialization; using System.Threading.Tasks; namespace HuanMeng.DotNetCore.JwtInfrastructure { /// /// 刷新token /// public class JwtRefreshToken { /// /// 用户名 /// [JsonPropertyName("username")] public string UserName { get; set; } = string.Empty; /// /// token /// [JsonPropertyName("tokenString")] public string TokenString { get; set; } = string.Empty; /// /// 过期时间 /// [JsonPropertyName("expireAt")] public DateTime ExpireAt { get; set; } } }