using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// MorphoCreateSource Data Structure.
///
[Serializable]
public class MorphoCreateSource : AopObject
{
///
/// 小程序源码地址
///
[XmlElement("address")]
public string Address { get; set; }
///
/// 调用闪蝶基于小程序源码创建应用时对应调用方侧应用的唯一标识
///
[XmlElement("id")]
public string Id { get; set; }
}
}