using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// ArticlePicture Data Structure.
///
[Serializable]
public class ArticlePicture : AopObject
{
///
/// 图片的描述
///
[JsonProperty("desc")]
public string Desc { get; set; }
///
/// 图片上传到素材中心后生成的id
///
[JsonProperty("location")]
public string Location { get; set; }
///
/// 图片名称
///
[JsonProperty("name")]
public string Name { get; set; }
///
/// "DISH":"菜品","ENVIRONMENT":"环境","SHOPHEAD":"门头照","OTHER":"其他"
///
[JsonProperty("type")]
public string Type { get; set; }
}
}