using Chat.Framework.WXSdk.Implement;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Chat.Framework.WXSdk.Events
{
///
/// 设备信息
///
public class WXGetDevice : WXEvent
{
///
/// 微信设备ID
///
public string DeviceInfo { get; set; }
public WXGetDevice(WeixinBase client) : base(client)
{
this.DeviceInfo = string.Empty;
}
}
}