25 lines
528 B
C#
25 lines
528 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// BeaconTemplate Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class BeaconTemplate : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 模板参数信息
|
|
/// </summary>
|
|
[XmlElement("context")]
|
|
public string Context { get; set; }
|
|
|
|
/// <summary>
|
|
/// 模板ID
|
|
/// </summary>
|
|
[XmlElement("templateid")]
|
|
public string Templateid { get; set; }
|
|
}
|
|
}
|