using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// KbAdvertContentPassword Data Structure. /// [Serializable] public class KbAdvertContentPassword : AopObject { /// /// 红包口令 /// [XmlElement("password")] public string Password { get; set; } /// /// 红包口令分享地址 /// [XmlElement("share_page_url")] public string SharePageUrl { get; set; } } }