using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AlipayOpenAppGongyiTestQueryModel Data Structure.
///
[Serializable]
public class AlipayOpenAppGongyiTestQueryModel : AopObject
{
///
/// sadfsdaf
///
[XmlElement("asdf")]
public AdvertItem Asdf { get; set; }
///
/// count 不是唯一 取值范围(1-10)
///
[XmlElement("count")]
public long Count { get; set; }
///
/// 价格
///
[XmlElement("price")]
public string Price { get; set; }
}
}