using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
///
/// KbdishPropertySimplifyInfo Data Structure.
///
[Serializable]
public class KbdishPropertySimplifyInfo : AopObject
{
///
/// 属性明细
///
[XmlArray("details")]
[XmlArrayItem("string")]
public List Details { get; set; }
///
/// 属性组名称
///
[XmlElement("name")]
public string Name { get; set; }
}
}