-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPersonal.cs
More file actions
49 lines (35 loc) · 1.48 KB
/
Personal.cs
File metadata and controls
49 lines (35 loc) · 1.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
namespace Evolution.Textkernel.Models
{
using System.Xml.Serialization;
public class Personal
{
[XmlElement("FirstName", IsNullable = true)]
public string FirstName { get; set; }
[XmlElement("MiddleName", IsNullable = true)]
public string MiddleName { get; set; }
[XmlElement("LastName", IsNullable = true)]
public string LastName { get; set; }
[XmlElement("NationalityCode", IsNullable = true)]
public string NationalityCode { get; set; }
[XmlElement("NationalityCodeDescription", IsNullable = true)]
public string NationalityCodeDescription { get; set; }
[XmlElement("DOB", IsNullable = true)]
public string DateOfBirth { get; set; }
[XmlElement("Gender", IsNullable = true)]
public string Gender { get; set; }
[XmlElement("MaritalStatus", IsNullable = true)]
public string MaritalStatus { get; set; }
[XmlElement("DriversLicence", IsNullable = true)]
public string DriversLicence { get; set; }
[XmlElement("Address", IsNullable = true)]
public Address Address { get; set; }
[XmlArrayItem("HomePhone")]
public string[] HomePhones { get; set; }
[XmlArrayItem("MobilePhone")]
public string[] MobilePhones { get; set; }
[XmlArrayItem("Email")]
public string[] Emails { get; set; }
[XmlArrayItem("PersonalURL")]
public string[] PersonalWebsite { get; set; }
}
}