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.
19 lines
488 B
Plaintext
19 lines
488 B
Plaintext
|
|
namespace BP.GPM.DTalk.DDSDK
|
|
{
|
|
/// <summary>
|
|
/// 签名包
|
|
/// </summary>
|
|
public class SignPackage
|
|
{
|
|
public string agentId { get; set; }
|
|
public string corpId { get; set; }
|
|
public string timeStamp { get; set; }
|
|
public string nonceStr { get; set; }
|
|
public string signature { get; set; }
|
|
public string url { get; set; }
|
|
public string rawstring { get; set; }
|
|
public string jsticket { get; set; }
|
|
}
|
|
}
|