diff options
author | Rory& <root@rory.gay> | 2024-09-16 08:43:42 +0200 |
---|---|---|
committer | Rory& <root@rory.gay> | 2024-09-16 08:43:42 +0200 |
commit | b93c5e7e284c73c97192bf4ff7002c4b396ed2e9 (patch) | |
tree | 254ea85c256b7f8c582a6755e7918ba48585ae87 /LibMatrix/Responses/SyncResponse.cs | |
parent | meow (diff) | |
download | LibMatrix-b93c5e7e284c73c97192bf4ff7002c4b396ed2e9.tar.xz |
Sync optimisation changes github/dev/moderationclient-changes dev/moderationclient-changes
Diffstat (limited to 'LibMatrix/Responses/SyncResponse.cs')
-rw-r--r-- | LibMatrix/Responses/SyncResponse.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/LibMatrix/Responses/SyncResponse.cs b/LibMatrix/Responses/SyncResponse.cs index 2d3d3f8..f2b901d 100644 --- a/LibMatrix/Responses/SyncResponse.cs +++ b/LibMatrix/Responses/SyncResponse.cs @@ -86,7 +86,7 @@ public class SyncResponse { [JsonPropertyName("summary")] public SummaryDataStructure? Summary { get; set; } - public class TimelineDataStructure { + public class TimelineDataStructure : EventList { public TimelineDataStructure() { } public TimelineDataStructure(List<StateEventResponse>? events, bool? limited) { @@ -94,8 +94,8 @@ public class SyncResponse { Limited = limited; } - [JsonPropertyName("events")] - public List<StateEventResponse>? Events { get; set; } + // [JsonPropertyName("events")] + // public List<StateEventResponse>? Events { get; set; } [JsonPropertyName("prev_batch")] public string? PrevBatch { get; set; } |