using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// BeaconTemplate Data Structure. /// [Serializable] public class BeaconTemplate : AopObject { /// /// 模板参数信息 /// [JsonProperty("context")] public string Context { get; set; } /// /// 模板ID /// [JsonProperty("templateid")] public string Templateid { get; set; } } }