This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
using System;
using System.Collections.Generic;
using System.Text;
namespace Estsh.Core.Config
{
/// <summary>
/// JsonWebToken配置模型。
/// </summary>
public class JwtConfig
/// 签发者。
public string Issuer { get; set; }
/// 收发者。
public string Audience { get; set; }
/// 密钥。
public string Secret { get; set; }
/// Token有效期(单位:分钟)。
public int Expiration { get; set; }
/// Token有效刷新时间(单位:分钟)。
public int refreshJwtTime { get; set; }
}