using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AlipayOpenMiniMembersHuobanDeleteModel Data Structure.
///
[Serializable]
public class AlipayOpenMiniMembersHuobanDeleteModel : AopObject
{
///
/// 用户域账号
///
[XmlElement("domain_account")]
public string DomainAccount { get; set; }
///
/// 支付宝账号
///
[XmlElement("login_id")]
public string LoginId { get; set; }
///
/// 小程序ID
///
[XmlElement("operate_app_id")]
public string OperateAppId { get; set; }
///
/// 成员角色
///
[XmlElement("type")]
public string Type { get; set; }
}
}