using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Top.Api.Response
{
///
/// ItemcatFeaturesGetResponse.
///
public class ItemcatFeaturesGetResponse : TopResponse
{
///
/// Feature对象列表
///
[XmlArray("features")]
[XmlArrayItem("feature")]
public List Features { get; set; }
}
}