C#公共类
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.

18 lines
434 B

using System;
using System.Collections.Generic;
using System.Text;
namespace Common.Helper.WeChat.Models
{
public class SubscribeMessageModel
{
public string touser { get; set; }
public string template_id { get; set; }
public string page { get; set; }
public object data { get; set; }
public string miniprogram_state { get; set; }
public string lang { get; set; }
}
}