33 lines
576 B
C#
33 lines
576 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Yi.Framework.Common.IOCOptions
|
|
{
|
|
public class JWTTokenOptions
|
|
{
|
|
public string Audience
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
public string SecurityKey
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
//public SigningCredentials Credentials
|
|
//{
|
|
// get;
|
|
// set;
|
|
//}
|
|
public string Issuer
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
}
|
|
}
|