using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// UboVO Data Structure.
///
[Serializable]
public class UboVO : AopObject
{
///
/// 职务
///
[XmlElement("duty")]
public string Duty { get; set; }
///
/// 控股比例
///
[XmlElement("invest_rate")]
public string InvestRate { get; set; }
///
/// ubo名称
///
[XmlElement("name")]
public string Name { get; set; }
}
}