using System;
using System.Collections.Generic;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// ItemDishInfo Data Structure.
///
[Serializable]
public class ItemDishInfo : AopObject
{
///
/// 商品详情-菜品图片中的图片描述
///
[JsonProperty("desc")]
public string Desc { get; set; }
///
/// 详情图片中,菜品图片列表
///
[JsonProperty("image_urls")]
public List ImageUrls { get; set; }
///
/// 详情图片中,菜品标题。请勿超过15汉字,30个字符
///
[JsonProperty("title")]
public string Title { get; set; }
}
}