-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProfileSummary.cs
More file actions
49 lines (35 loc) · 1.5 KB
/
ProfileSummary.cs
File metadata and controls
49 lines (35 loc) · 1.5 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 ProfileSummary
{
[XmlElement("CurrentJob")]
public string CurrentJob { get; set; }
[XmlElement("CurrentEmployer")]
public string CurrentEmployer { get; set; }
[XmlElement("CurrentEmployerLocation")]
public string CurrentEmployerLocation { get; set; }
[XmlElement("TotalExperienceYears")]
public string TotalExperienceYears { get; set; }
[XmlElement("HighestEducationLevelCode")]
public string HighestEducationLevelCode { get; set; }
[XmlElement("HighestEducationLevelCodeDescription")]
public string HighestEducationLevelCodeDescription { get; set; }
[XmlElement("SummaryAmbitionSection")]
public string SummaryAmbitionSection { get; set; }
[XmlElement("CVComment")]
public string CVComment { get; set; }
[XmlElement("SalaryRangeCode")]
public string SalaryRangeCode { get; set; }
[XmlElement("SalaryRangeDescription")]
public string SalaryRangeDescription { get; set; }
[XmlElement("ProfileStatusCode")]
public string ProfileStatusCode { get; set; }
[XmlElement("ProfileStatusCodeDescription")]
public string ProfileStatusCodeDescription { get; set; }
[XmlElement("ExternalID")]
public string ExternalID { get; set; }
[XmlElement("ProfilePicture")]
public ProfilePicture Picture { get; set; }
}
}