using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// NetFlowOfferInfo Data Structure. /// [Serializable] public class NetFlowOfferInfo : AopObject { /// /// 流量生效时间 /// [XmlElement("effective_time")] public string EffectiveTime { get; set; } /// /// 流量过期时间 /// [XmlElement("expire_time")] public string ExpireTime { get; set; } /// /// 流量套餐名称 /// [XmlElement("offer_name")] public string OfferName { get; set; } /// /// 下单时间 /// [XmlElement("order_time")] public string OrderTime { get; set; } } }