using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayOpenMiniMorphoAppauditSubmitModel Data Structure. /// [Serializable] public class AlipayOpenMiniMorphoAppauditSubmitModel : AopObject { /// /// 闪蝶应用ID /// [XmlElement("id")] public string Id { get; set; } /// /// 闪蝶身份验证信息 /// [XmlElement("identity")] public MorphoIdentity Identity { get; set; } /// /// 2张应用截图 /// [XmlElement("screen_shots")] public string ScreenShots { get; set; } } }