1234567891011121314151617181920212223242526272829 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace DFS.Core.Mvc.Jwt
- {
- /// <summary>
- /// jwt 配置信息
- /// </summary>
- public static class JwtConfig
- {
- /// <summary>
- ///
- /// </summary>
- public const string JwtTokenKey = "DFSTK@#NXYL66H4L";
- public const string RedisKey = "64bf6b4fe82740dc864dc681cdd2ffbf";
- public const string RedisCon = "AuthJwtRedis";
- public const string UserCliam = "";
- public const string Channel = "Channel";
- public const string SystemType = "SystemType";
- public const string TokenUser = "TokenUser";
- }
- }
|