You can not 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
1.2 KiB

namespace Zncy.CloudCar.WeChat.Service.Models
{
/// <summary>
/// 微信公众服务器Post过来的加密参数集合(不包括PostData)
/// <para>如需使用 NeuChar,需要在 MessageHandler 中提供 PostModel 并设置 AppId</para>
/// </summary>
public class PostModel : EncryptPostModel
{
public override string DomainId
{
get => AppId;
set => AppId = value;
}
#pragma warning disable CS8618 // 在退出构造函数时,不可为 null 的 属性“AppId”必须包含非 null 值。请考虑将 属性 声明为可以为 null。
public string AppId { get; set; }
#pragma warning restore CS8618 // 在退出构造函数时,不可为 null 的 属性“AppId”必须包含非 null 值。请考虑将 属性 声明为可以为 null。
/// <summary>设置服务器内部保密信息</summary>
/// <param name="token"></param>
/// <param name="encodingAESKey"></param>
/// <param name="appId"></param>
public void SetSecretInfo(string token, string encodingAESKey, string appId)
{
Token = token;
EncodingAESKey = encodingAESKey;
AppId = appId;
}
}
}