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.3 KiB

using Newtonsoft.Json.Linq;
namespace Zncy.CloudCar.WeChat.Service.Models
{
/// <summary>
/// 处理器-微信模板消息【小程序,公众号都走这里】
/// </summary>
public class SendWxTemplateMessage
{
/// <summary>
/// 用户序列
/// </summary>
public int userId { get; set; }
/// <summary>
/// 类型
/// </summary>
#pragma warning disable CS8618 // 在退出构造函数时,不可为 null 的 属性“code”必须包含非 null 值。请考虑将 属性 声明为可以为 null。
public string code { get; set; }
#pragma warning restore CS8618 // 在退出构造函数时,不可为 null 的 属性“code”必须包含非 null 值。请考虑将 属性 声明为可以为 null。
/// <summary>
/// 传递数据
/// </summary>
#pragma warning disable CS8618 // 在退出构造函数时,不可为 null 的 属性“parameters”必须包含非 null 值。请考虑将 属性 声明为可以为 null。
public JObject parameters { get; set; }
#pragma warning restore CS8618 // 在退出构造函数时,不可为 null 的 属性“parameters”必须包含非 null 值。请考虑将 属性 声明为可以为 null。
}
}