using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// SingleStartAppVO Data Structure. /// [Serializable] public class SingleStartAppVO : AopObject { /// /// 小程序启动协议 /// [XmlElement("protocol")] public string Protocol { get; set; } /// /// 按照标准定义的startAppModel /// [XmlElement("start_app_model")] public string StartAppModel { get; set; } } }