-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProfile.cs
More file actions
49 lines (36 loc) · 1.31 KB
/
Profile.cs
File metadata and controls
49 lines (36 loc) · 1.31 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;
using System.Xml.Serialization;
[Serializable()]
[XmlRoot("Profile")]
public class Profile
{
[XmlElement("ProfileSummary")]
public ProfileSummary Summary { get; set; }
[XmlElement("Personal")]
public Personal Personal { get; set; }
[XmlElement("ExtraInfo")]
public ExtraInfo ExtraInfo { get; set; }
[XmlArrayItem("EducationItem")]
public EducationItem[] EducationHistory { get; set; }
[XmlArrayItem("RecentEmploymentItem")]
public EmploymentItem[] RecentEmploymentHistory { get; set; }
[XmlArrayItem("EmploymentItem")]
public EmploymentItem[] EmploymentHistory { get; set; }
[XmlElement("Skills")]
public Skills Skills { get; set; }
[XmlArrayItem("Keyword")]
public string[] FullTextKeywords { get; set; }
[XmlElement("DocumentText")]
public string DocumentText { get; set; }
[XmlElement("DocumentHtml")]
public string DocumentHtml { get; set; }
[XmlElement("Performance")]
public Performance Performance { get; set; }
[XmlAttribute("lang")]
public string Language { get; set; }
[XmlAttribute("file")]
public string File { get; set; }
}
}