22 lines
355 B
C#
22 lines
355 B
C#
namespace ZhiZhun.AuthenticationCenter.Utility
|
|
{
|
|
public class JWTTokenOptions
|
|
{
|
|
public string Audience
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
public string SecurityKey
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
public string Issuer
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
}
|
|
}
|