Skip to content

Commit 7db16be

Browse files
committed
Add pagination properties to PersonsWithSignificantControl model. Fixes issue #211
1 parent f7f4e96 commit 7db16be

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

src/CompaniesHouse/Response/PersonsWithSignificantControl/PersonsWithSignificantControl.cs

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,14 @@ public class PersonsWithSignificantControl
1212

1313
[JsonProperty(PropertyName = "ceased_count")]
1414
public int? CeasedCount { get; set; }
15+
16+
[JsonProperty(PropertyName = "items_per_page")]
17+
public int ItemsPerPage { get; set; }
18+
19+
[JsonProperty(PropertyName = "start_index")]
20+
public int StartIndex { get; set; }
21+
22+
[JsonProperty(PropertyName = "total_results")]
23+
public int TotalResults { get; set; }
1524
}
1625
}

0 commit comments

Comments
 (0)