25 lines
510 B
C#
25 lines
510 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// LegalRepresentativeVO Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class LegalRepresentativeVO : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 职务
|
|
/// </summary>
|
|
[XmlElement("duty")]
|
|
public string Duty { get; set; }
|
|
|
|
/// <summary>
|
|
/// 姓名
|
|
/// </summary>
|
|
[XmlElement("name")]
|
|
public string Name { get; set; }
|
|
}
|
|
}
|