AppConsts.cs 384 B

12345678910111213141516
  1. 
  2. namespace IMCS.CCS.Common
  3. {
  4. public class AppConsts
  5. {
  6. public const string TokenKeyName = "TokenKey";
  7. public const string TokenValueName = "TokenValue";
  8. public const string UnAuth = "验证未通过,请重新授权!";
  9. public const string JwtKeyName = "JwtKeyName";
  10. public const string JwtSecurityKey = "JwtSecurityKey";
  11. }
  12. }