using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipaySocialBaseSceneContentQueryModel Data Structure. /// [Serializable] public class AlipaySocialBaseSceneContentQueryModel : AopObject { /// /// 城市id /// [XmlElement("city_id")] public string CityId { get; set; } /// /// 内容中台提供的运营后台配置场景id /// [XmlElement("scene_id")] public string SceneId { get; set; } /// /// 返回文章列表的个数,目前最多10条 /// [XmlElement("top_size")] public long TopSize { get; set; } /// /// 蚂蚁统一会员ID /// [XmlElement("user_id")] public string UserId { get; set; } } }