using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayOpenMiniMorphoAppCreateModel Data Structure. /// [Serializable] public class AlipayOpenMiniMorphoAppCreateModel : AopObject { /// /// 闪蝶创建应用的应用信息 /// [XmlElement("application")] public MorphoCreateApp Application { get; set; } /// /// 闪蝶身份校验信息 /// [XmlElement("identity")] public MorphoIdentity Identity { get; set; } /// /// 闪蝶创建应用的源码信息 /// [XmlElement("source")] public MorphoCreateSource Source { get; set; } /// /// 创建应用使用的模板的信息 /// [XmlElement("template")] public MorphoTemplate Template { get; set; } } }