JwtConfig.cs 667 B

1234567891011121314151617181920212223242526272829
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace DFS.Core.Mvc.Jwt
  5. {
  6. /// <summary>
  7. /// jwt 配置信息
  8. /// </summary>
  9. public static class JwtConfig
  10. {
  11. /// <summary>
  12. ///
  13. /// </summary>
  14. public const string JwtTokenKey = "DFSTK@#NXYL66H4L";
  15. public const string RedisKey = "64bf6b4fe82740dc864dc681cdd2ffbf";
  16. public const string RedisCon = "AuthJwtRedis";
  17. public const string UserCliam = "";
  18. public const string Channel = "Channel";
  19. public const string SystemType = "SystemType";
  20. public const string TokenUser = "TokenUser";
  21. }
  22. }