using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Top.Api.Response
{
///
/// ItemcatsGetResponse.
///
public class ItemcatsGetResponse : TopResponse
{
///
/// 商品类目结构
///
[XmlArray("item_cats")]
[XmlArrayItem("item_cat")]
public List ItemCats { get; set; }
///
/// 最近修改时间(如果取增量,会返回该字段)。
///
[XmlElement("last_modified")]
public string LastModified { get; set; }
}
}