using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayEcoSmsSendModel Data Structure. /// [Serializable] public class AlipayEcoSmsSendModel : AopObject { /// /// 发送内容 /// [XmlElement("content")] public string Content { get; set; } /// /// 待收信人手机号 /// [XmlElement("phone")] public string Phone { get; set; } } }