123456789101112131415161718192021222324252627282930313233343536 |
-
- using DataType = FreeSql.DataType;
- namespace Admin.Core.Common.Configs
- {
-
-
-
- public class JwtConfig
- {
-
-
-
- public string Issuer { get; set; } = "http://127.0.0.1:8888";
-
-
-
- public string Audience { get; set; } = "http://127.0.0.1:8888";
-
-
-
- public string SecurityKey { get; set; } = "ertJKl#521*a@790asD&1#";
-
-
-
- public int Expires { get; set; } = 120;
-
-
-
- public int RefreshExpires { get; set; } = 480;
- }
- }
|