using System;
using System.Xml.Serialization;
using System.Collections.Generic;
using Aop.Api.Domain;
namespace Aop.Api.Response
{
///
/// AlipayOpenMiniCategoryQueryResponse.
///
public class AlipayOpenMiniCategoryQueryResponse : AopResponse
{
///
/// 小程序类目列表
///
[XmlArray("category_list")]
[XmlArrayItem("mini_app_category")]
public List CategoryList { get; set; }
///
/// 小程序新类目列表
///
[XmlArray("mini_category_list")]
[XmlArrayItem("mini_app_category")]
public List MiniCategoryList { get; set; }
}
}