Skip to content

Commit fa3c6cb

Browse files
committed
Unified parsed results for comparison
1 parent 759357c commit fa3c6cb

File tree

3 files changed

+15
-3
lines changed

3 files changed

+15
-3
lines changed

Models/EducationItem.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,5 @@ public class EducationItem
2424

2525
[XmlElement("EndDate")]
2626
public string EndDate { get; set; }
27-
28-
[XmlElement("FirstName")]
29-
public string FirstName { get; set; }
3027
}
3128
}

Models/Personal.cs

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,5 +33,17 @@ public class Personal
3333

3434
[XmlElement("Address", IsNullable = true)]
3535
public Address Address { get; set; }
36+
37+
[XmlArrayItem("HomePhone")]
38+
public string[] HomePhones { get; set; }
39+
40+
[XmlArrayItem("MobilePhone")]
41+
public string[] MobilePhones { get; set; }
42+
43+
[XmlArrayItem("Email")]
44+
public string[] Emails { get; set; }
45+
46+
[XmlArrayItem("PersonalURL")]
47+
public string[] PersonalWebsite { get; set; }
3648
}
3749
}

Models/ProfileSummary.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@ public class ProfileSummary
1919
[XmlElement("HighestEducationLevelCode")]
2020
public string HighestEducationLevelCode { get; set; }
2121

22+
[XmlElement("HighestEducationLevelCodeDescription")]
23+
public string HighestEducationLevelCodeDescription { get; set; }
24+
2225
[XmlElement("SummaryAmbitionSection")]
2326
public string SummaryAmbitionSection { get; set; }
2427

0 commit comments

Comments
 (0)