using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IPADDemo.Model
{
public class WxUser
{
///
/// 句柄
///
public object hander { get; set; }
///
/// 微信ID
///
public string wxid { get; set; }
///
/// 状态
///
public int type { get; set; }
///
/// 功能
///
public int code { get; set; }
///
/// 名称
///
public string name { get; set; }
}
}