using System.Collections.Generic;
namespace WX.CRM.CRMServices.SMS.InterfaceExec
{
public class QQSmsResultModel
{
///
/// 0表示成功,非0表示失败,失败后没有detail列表信息
///
public int result { get; set; }
///
/// result非0时的具体错误信息
///
public string errmsg { get; set; }
///
/// 用户的session内容,腾讯server回包中会原样返回
///
public string ext { get; set; }
///
/// 消息内容
///
public List detail { get; set; }
}
public class Detail
{
///
/// 0表示成功(计费依据),非0表示失败
///
public int result { get; set; }
///
/// result非0时的具体错误信息
///
public string errmsg { get; set; }
///
/// 手机号码
///
public string mobile { get; set; }
///
/// 国家码
///
public string country { get; set; }
///
/// 标识本次发送id
///
public string sid { get; set; }
///
/// 短信计费的条数
///
public int fee { get; set; }
}
}