using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Chat.Framework.WXSdk.Events { /// /// 微信日志事件 /// public class WXWriteLog : WXEvent { public WXWriteLog(Implement.WeixinBase wxclient) : base(wxclient) { } /// /// 是否为debug /// public bool IsDebug { get; internal set; } /// /// 消息内容 /// public string Message { get; internal set; } } }