using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// NewsfeedMediaVideoInfo Data Structure.
///
[Serializable]
public class NewsfeedMediaVideoInfo : AopObject
{
///
/// 高度
///
[JsonProperty("height")]
public string Height { get; set; }
///
/// 视频缩略图的ID(支持djangoId)
///
[JsonProperty("img_id")]
public string ImgId { get; set; }
///
/// 视频的id(支持djangoId)
///
[JsonProperty("video_id")]
public string VideoId { get; set; }
///
/// 宽度
///
[JsonProperty("width")]
public string Width { get; set; }
}
}