You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
425 B
C#

namespace NPin.Framework.Upms.Domain.Shared.Options;
/// <summary>
/// JWT 配置
/// </summary>
public class JwtOptions
{
public string Issuer { get; set; } = "NoahLan";
public string Audience { get; set; } = "NoahLan";
public string SecurityKey { get; set; } = "892u4j1803qj23jro0fjkf8bmsdf9nb9mf92834u23jdf923jrnmvasbceqwt347562tgdhdnsv9wevbnop";
public long ExpiresMinuteTime { get; set; } = 120;
}