using System.Collections.Generic; namespace WX.CRM.CRMServices.SMS.InterfaceModel { public class RuiXin_Result { public int send_fail { get; set; } public List 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; } } } }