namespace DopInterfacePlatform
{
public class JwtOptions
{
///
/// 签发者
///
public string Issuer { get; set; }
///
/// 接收者
///
public string Audience { get; set; }
///
/// 密钥
///
public string Key { get; set; }
///
/// 过期时间
///
public int ExpireSeconds { get; set; }
}
}