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.
14 lines
371 B
14 lines
371 B
namespace PEIS.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; }
|
|
}
|
|
}
|
|
|