using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace YBDevice.WXApplication.DeviceInfo
{
///
/// 关键字回复响应信息
///
public class WXTextResponseData
{
///
/// 用户fansid
///
public string? wxfansid { get; set; }
///
/// 类型,1-带测量参数二维码,2-固定二维码
///
public int type { get; set; }
///
/// 记录ID
///
public string? resultid { get; set; } = null;
}
}