31 lines
657 B
C#
31 lines
657 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// NewsfeedMediaImg Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class NewsfeedMediaImg : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 图片高度
|
|
/// </summary>
|
|
[XmlElement("height")]
|
|
public string Height { get; set; }
|
|
|
|
/// <summary>
|
|
/// 图片地址
|
|
/// </summary>
|
|
[XmlElement("src")]
|
|
public string Src { get; set; }
|
|
|
|
/// <summary>
|
|
/// 图片宽度
|
|
/// </summary>
|
|
[XmlElement("width")]
|
|
public string Width { get; set; }
|
|
}
|
|
}
|