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