using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// LegalRepresentativeVO Data Structure.
///
[Serializable]
public class LegalRepresentativeVO : AopObject
{
///
/// 职务
///
[XmlElement("duty")]
public string Duty { get; set; }
///
/// 姓名
///
[XmlElement("name")]
public string Name { get; set; }
}
}