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

21 lines
498 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.

namespace WX.CRM.CRMServices.SMS.InterfaceModel
{
public class ReturnResult
{
/// <summary>
/// 提交状态success提交成功fail提交失败
/// </summary>
public SubmitStatus submitStatus { get; set; }
/// <summary>
/// 返回值
/// </summary>
public string ReturnStr { get; set; }
/// <summary>
/// 发送的字符串
/// </summary>
public string SendStr { get; set; }
}
}