using System;
using System.Collections.Generic;
using System.Text;
namespace TEAMModelOS.SDK.Extension.JwtAuth.Models
{
public class JwtSetting
{
///
/// 项目名称
///
// public string Project { get; set; }
///
/// JwtClient
///
public List JwtClient { get; set; }
///
/// WT的接收对象
///
public string Audience { get; set; }
///
/// JWT的签发主体
///
public string Issuer { get; set; }
///
/// JWT Secret Key
///
//public string SecurityKey { get; set; }
}
}