using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// NewsfeedMediaLinkInfo Data Structure.
///
[Serializable]
public class NewsfeedMediaLinkInfo : AopObject
{
///
/// 资源ID
///
[JsonProperty("content_id")]
public string ContentId { get; set; }
///
/// 资源的来源
///
[JsonProperty("content_source")]
public string ContentSource { get; set; }
///
/// 资源类型
///
[JsonProperty("content_type")]
public string ContentType { get; set; }
///
/// 描述
///
[JsonProperty("desc")]
public string Desc { get; set; }
///
/// 链接的缩略图
///
[JsonProperty("thumb")]
public string Thumb { get; set; }
///
/// 标题
///
[JsonProperty("title")]
public string Title { get; set; }
///
/// linkurl
///
[JsonProperty("url")]
public string Url { get; set; }
}
}