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.
27 lines
829 B
C#
27 lines
829 B
C#
namespace Ds.Module.WeChat.Models
|
|
{
|
|
/// <summary>接收加密信息统一接口(同时也支持非加密信息)</summary>
|
|
public interface IEncryptPostModel
|
|
{
|
|
/// <summary>指定当前服务账号的唯一领域定义(主要为 APM 服务),例如 AppId</summary>
|
|
string DomainId { get; set; }
|
|
|
|
/// <summary>Signature</summary>
|
|
string Signature { get; set; }
|
|
|
|
/// <summary>Msg_Signature</summary>
|
|
string Msg_Signature { get; set; }
|
|
|
|
/// <summary>Timestamp</summary>
|
|
string Timestamp { get; set; }
|
|
|
|
/// <summary>Nonce</summary>
|
|
string Nonce { get; set; }
|
|
|
|
/// <summary>Token</summary>
|
|
string Token { get; set; }
|
|
|
|
/// <summary>EncodingAESKey</summary>
|
|
string EncodingAESKey { get; set; }
|
|
}
|
|
} |