using System.Collections.Generic;
namespace WX.CRM.CRMServices.SMS.InterfaceModel
{
public class RuiXin_Pkg
{
///
/// 0发送,1重发
///
public int resend { get; set; }
///
/// 短信数据
///
public List list { get; set; }
///
/// 打包号码的长度
///
public int size { get; set; }
}
public class RuiXin_Msg
{
///
/// 短信内容
///
public string content { get; set; }
///
/// 客户端唯一的短信编号
///
public string msid { get; set; }
///
/// 接收号码
///
public string mobile { get; set; }
}
}