26 lines
540 B
C#
26 lines
540 B
C#
|
using Api.Framework.Tools;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace Api.Framework.Model
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 微信协议设备信息
|
|||
|
/// </summary>
|
|||
|
public class fl_wechat_device:base_model
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 微信号
|
|||
|
/// </summary>
|
|||
|
public string weixinhao { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 设备信息
|
|||
|
/// </summary>
|
|||
|
public string device_info { get; set; }
|
|||
|
}
|
|||
|
}
|