old_flsystem/类库/Chat.Framework/WXSdk/Events/WXGetDevice.cs

26 lines
554 B
C#

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
{
/// <summary>
/// 设备信息
/// </summary>
public class WXGetDevice : WXEvent
{
/// <summary>
/// 微信设备ID
/// </summary>
public string DeviceInfo { get; set; }
public WXGetDevice(WeixinBase client) : base(client)
{
this.DeviceInfo = string.Empty;
}
}
}