mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-03 00:00:58 +08:00
20 lines
422 B
C#
20 lines
422 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Yi.Framework.Common.IOCOptions
|
|
{
|
|
public class JWTTokenOptions
|
|
{
|
|
public string Audience { get; set; }
|
|
|
|
public string Issuer { get; set; }
|
|
|
|
public string DefaultScheme { get; set; }
|
|
public int Expiration { get; set; }
|
|
|
|
public int ReExpiration { get; set; }
|
|
}
|
|
}
|