using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// RtaInfo Data Structure. /// [Serializable] public class RtaInfo : AopObject { /// /// 广告投放账户id /// [XmlElement("account_id")] public string AccountId { get; set; } } }