You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
668 B
Plaintext
30 lines
668 B
Plaintext
|
|
namespace BP.GPM.DTalk.DDSDK
|
|
{
|
|
/// <summary>
|
|
/// Url的Key
|
|
/// </summary>
|
|
public sealed class Keys
|
|
{
|
|
public const string corpid = "corpid";
|
|
|
|
public const string corpsecret = "corpsecret";
|
|
|
|
public const string department_id = "department_id";
|
|
|
|
public const string userid = "userid";
|
|
|
|
public const string chatid = "chatid";
|
|
|
|
public const string access_token = "access_token";
|
|
|
|
public const string jsapi_ticket = "jsapi_ticket";
|
|
|
|
public const string noncestr = "noncestr";
|
|
|
|
public const string timestamp = "timestamp";
|
|
|
|
public const string url = "url";
|
|
}
|
|
}
|