using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Top.Api.Response
{
///
/// ItempropsGetResponse.
///
public class ItempropsGetResponse : TopResponse
{
///
/// 商品属性
///
[XmlArray("item_props")]
[XmlArrayItem("item_prop")]
public List ItemProps { get; set; }
///
/// 最近修改时间(只有取全量或增量的时候会返回该字段)。格式:yyyy-MM-dd HH:mm:ss
///
[XmlElement("last_modified")]
public string LastModified { get; set; }
}
}