using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// MorphoIdentity Data Structure.
///
[Serializable]
public class MorphoIdentity : AopObject
{
///
/// 闪蝶侧用户身份唯一标识
///
[XmlElement("biz_id")]
public string BizId { get; set; }
}
}