TG.WXCRM.V4/CRMServices/PkgSms/InterfaceModel/RuiXin_Pkg.cs

41 lines
884 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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