using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AlipayOpenMiniMorphoAppauditCancelModel Data Structure.
///
[Serializable]
public class AlipayOpenMiniMorphoAppauditCancelModel : AopObject
{
///
/// 小程序版本号
///
[XmlElement("app_version")]
public string AppVersion { get; set; }
///
/// 闪蝶应用ID
///
[XmlElement("id")]
public string Id { get; set; }
///
/// 闪蝶身份校验
///
[XmlElement("identity")]
public MorphoIdentity Identity { get; set; }
}
}