2023-12-11 09:55:12 +08:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Yi.Framework.Rbac.Domain.Shared.Options
|
|
|
|
|
|
{
|
|
|
|
|
|
public class JwtOptions
|
|
|
|
|
|
{
|
2024-01-24 11:29:59 +08:00
|
|
|
|
public string Issuer { get; set; } = "ccnetcore.com";
|
2023-12-11 09:55:12 +08:00
|
|
|
|
|
2024-01-24 11:29:59 +08:00
|
|
|
|
public string Audience { get; set; } = "https//ccnetcore.com";
|
2023-12-11 09:55:12 +08:00
|
|
|
|
|
2024-01-24 11:29:59 +08:00
|
|
|
|
public string SecurityKey { get; set; } = "892u4j1803qj23jro0fjkf8bmsdf9nb9mf92834u23jdf923jrnmvasbceqwt347562tgdhdnsv9wevbnop";
|
2024-01-23 23:35:38 +08:00
|
|
|
|
|
2024-01-24 11:29:59 +08:00
|
|
|
|
public long ExpiresMinuteTime { get; set; } = 120;
|
2023-12-11 09:55:12 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|