-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEmploymentItem.cs
46 lines (33 loc) · 1.27 KB
/
EmploymentItem.cs
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
namespace Evolution.Textkernel.Models
{
using System.Xml.Serialization;
public class EmploymentItem
{
[XmlElement("JobTitle")]
public string JobTitle { get; set; }
[XmlElement("ExperienceONET")]
public CodeValue<string> ExperienceOccupationalInformationNetwork { get; set; }
[XmlElement("EmployerName")]
public string EmployerName { get; set; }
[XmlElement("EmployerCity")]
public string EmployerCity { get; set; }
[XmlElement("EmployerRegion")]
public string EmployerRegion { get; set; }
[XmlElement("EmployerCountry")]
public string EmployerCountry { get; set; }
[XmlElement("YearsExperience")]
public CodeValue<int> YearsExperience { get; set; }
[XmlElement("JobDescription")]
public string JobDescription { get; set; }
[XmlElement("StartDate")]
public string StartDate { get; set; }
[XmlElement("EndDate")]
public string EndDate { get; set; }
[XmlElement("JobCode")]
public CodeValue<int> JobCode { get; set; }
[XmlElement("JobGroup")]
public CodeValue<int> JobGroup { get; set; }
[XmlElement("JobClass")]
public CodeValue<int> JobClass { get; set; }
}
}