19 lines
385 B
C#
19 lines
385 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// KbAdvertContentShortLink Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class KbAdvertContentShortLink : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 链接地址
|
|
/// </summary>
|
|
[XmlElement("url")]
|
|
public string Url { get; set; }
|
|
}
|
|
}
|