123456789101112131415161718192021222324252627282930313233343536 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
- namespace HiTeachCE.Helpers
- {
- public class Constant
- {
- public static string az09 = "qwertyuiopasdfghjklzxcvbnm0123456789";
- public static string num09 = "0123456789";
- public const string Role_WebAll = "WebAll";
- public const string Role_Root = "root";
- public const string Role_Admin = "admin";
- public const string Role_Lecturer = "lecturer";
- public const string Role_Learner = "learner";
- public const string Role_RootAdmin = "RootAdmin";
- public const string Role_LecturerLearner = "LecturerLearner";
- /// <summary>
- /// access_token
- /// </summary>
- public static readonly string ACCESS_TOKEN = "access_token";
- /// <summary>
- /// ÒýÓÃÒ³
- /// </summary>
- public static readonly string REFERER = "referer";
- /// <summary>
- /// token ÇëÇóÍ·
- /// </summary>
- public static readonly string AUTHORIZATION = "Authorization";
- /// <summary>
- /// josn¸ñʽ
- /// </summary>
- public static readonly string CONTENT_TYPE_JSON = "application/json";
- }
- }
|