File tree Expand file tree Collapse file tree 3 files changed +15
-3
lines changed Expand file tree Collapse file tree 3 files changed +15
-3
lines changed Original file line number Diff line number Diff line change @@ -24,8 +24,5 @@ public class EducationItem
24
24
25
25
[ XmlElement ( "EndDate" ) ]
26
26
public string EndDate { get ; set ; }
27
-
28
- [ XmlElement ( "FirstName" ) ]
29
- public string FirstName { get ; set ; }
30
27
}
31
28
}
Original file line number Diff line number Diff line change @@ -33,5 +33,17 @@ public class Personal
33
33
34
34
[ XmlElement ( "Address" , IsNullable = true ) ]
35
35
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 ; }
36
48
}
37
49
}
Original file line number Diff line number Diff line change @@ -19,6 +19,9 @@ public class ProfileSummary
19
19
[ XmlElement ( "HighestEducationLevelCode" ) ]
20
20
public string HighestEducationLevelCode { get ; set ; }
21
21
22
+ [ XmlElement ( "HighestEducationLevelCodeDescription" ) ]
23
+ public string HighestEducationLevelCodeDescription { get ; set ; }
24
+
22
25
[ XmlElement ( "SummaryAmbitionSection" ) ]
23
26
public string SummaryAmbitionSection { get ; set ; }
24
27
You can’t perform that action at this time.
0 commit comments