namespace TEAMModelOS.SDK.Context.Constant.Common
{
public static class Constants
{
///
/// access_token
///
public static readonly string ACCESS_TOKEN = "access_token";
///
/// 引用页
///
public static readonly string REFERER = "referer";
///
/// token 请求头
///
public static readonly string AUTHORIZATION = "Authorization";
///
/// josn格式
///
public static readonly string CONTENT_TYPE_JSON = "application/json";
///
/// 主题
///
public static string TopicName = "test_topic_ActiveTask";
///
/// 订阅
///
public static string SubName = "test_topic_ReciveTask";
}
}