using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// TuitionUserName Data Structure.
///
[Serializable]
public class TuitionUserName : AopObject
{
///
/// 姓名姓氏
///
[XmlElement("first_name")]
public string FirstName { get; set; }
///
/// 完整姓名
///
[XmlElement("full_name")]
public string FullName { get; set; }
///
/// 姓名最后的名字
///
[XmlElement("last_name")]
public string LastName { get; set; }
///
/// 姓名中间的名字
///
[XmlElement("middle_name")]
public string MiddleName { get; set; }
}
}