27 lines
646 B
C#
27 lines
646 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// IntroductionInfo Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class IntroductionInfo : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 商品详情-商家介绍图片地址列表
|
|
/// </summary>
|
|
[XmlArray("image_urls")]
|
|
[XmlArrayItem("string")]
|
|
public List<string> ImageUrls { get; set; }
|
|
|
|
/// <summary>
|
|
/// 商品详情-商家介绍标题
|
|
/// </summary>
|
|
[XmlElement("title")]
|
|
public string Title { get; set; }
|
|
}
|
|
}
|