55 lines
1.0 KiB
C#
55 lines
1.0 KiB
C#
using System.Collections.Generic;
|
|
|
|
namespace WX.CRM.CRMServices.SMS.InterfaceModel
|
|
{
|
|
public class RuiXin_Result
|
|
{
|
|
public int send_fail { get; set; }
|
|
|
|
public List<RuiXin_Result_Detail> list { get; set; }
|
|
|
|
public string trid { get; set; }
|
|
|
|
public string msid { get; set; }
|
|
|
|
public string code { get; set; }
|
|
|
|
public int send_ok { get; set; }
|
|
|
|
public string msg { get; set; }
|
|
}
|
|
|
|
public class RuiXin_Result_Detail
|
|
{
|
|
int _sign;
|
|
string _trid = "";
|
|
int _msid;
|
|
string _mobile = "";
|
|
|
|
public int sign
|
|
{
|
|
get { return _sign; }
|
|
set { _sign = value; }
|
|
}
|
|
|
|
public string trid
|
|
{
|
|
get { return _trid; }
|
|
set { _trid = value; }
|
|
}
|
|
|
|
public int msid
|
|
{
|
|
get { return _msid; }
|
|
set { _msid = value; }
|
|
}
|
|
|
|
public string mobile
|
|
{
|
|
get { return _mobile; }
|
|
set { _mobile = value; }
|
|
}
|
|
}
|
|
|
|
}
|