using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// OpusInfo Data Structure.
///
[Serializable]
public class OpusInfo : AopObject
{
///
/// 展示权重;必须大于等于0;排序规则:权重倒叙;默认值为0
///
[XmlElement("display_weight")]
public string DisplayWeight { get; set; }
///
/// 外部作品id
///
[XmlElement("external_opus_id")]
public string ExternalOpusId { get; set; }
///
/// 素材id
///
[XmlElement("media_id")]
public string MediaId { get; set; }
///
/// 头图素材type; 枚举类型:PICTURE/VIDEO
///
[XmlElement("media_type")]
public string MediaType { get; set; }
///
/// 素材url
///
[XmlElement("media_url")]
public string MediaUrl { get; set; }
///
/// 作品id
///
[XmlElement("opus_id")]
public string OpusId { get; set; }
///
/// 素材标题
///
[XmlElement("title")]
public string Title { get; set; }
}
}