15 lines
340 B
C#
15 lines
340 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace iPackage.Core.Web.Models.Settings
|
|
{
|
|
public class JwtSettings
|
|
{
|
|
public string SecretKey { get; set; }
|
|
public string Issuer { get; set; }
|
|
public string Audience { get; set; }
|
|
public int ExpireAddDay { get; set; }
|
|
}
|
|
}
|