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