27 lines
629 B
C#
27 lines
629 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// ItemPropertyInfo Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class ItemPropertyInfo : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 属性名称
|
|
/// </summary>
|
|
[XmlElement("property_key")]
|
|
public string PropertyKey { get; set; }
|
|
|
|
/// <summary>
|
|
/// 属性值列表
|
|
/// </summary>
|
|
[XmlArray("property_value_list")]
|
|
[XmlArrayItem("string")]
|
|
public List<string> PropertyValueList { get; set; }
|
|
}
|
|
}
|