using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
///
/// ShopServiceItem Data Structure.
///
[Serializable]
public class ShopServiceItem : AopObject
{
///
/// 对服务的项目的详细描述
///
[XmlElement("description")]
public string Description { get; set; }
///
/// 服务项目名称
///
[XmlElement("name")]
public string Name { get; set; }
///
/// 服务项目需要图片素材
///
[XmlArray("pictures")]
[XmlArrayItem("string")]
public List Pictures { get; set; }
}
}