using MediatR;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ApiTools.Core
{
///
/// 微信小程序订阅消息通知
///
[Resource([EnumResourceController.CommonServerWxmpUtils], Method = EnumResourceMethod.Post)]
public class WxmpSubscribMessageNotifyCommand : IRequest
{
public string ToUserName { get; set; }
public string FromUserName { get; set; }
public DateTime CreateTime { get; set; }
public string MsgType { get; set; }
public string Event { get; set; }
}
}