1 files changed, 1 insertions, 0 deletions
diff --git a/MatrixUtils.Abstractions/RoomInfo.cs b/MatrixUtils.Abstractions/RoomInfo.cs
index 5c258a4..aff0e25 100644
--- a/MatrixUtils.Abstractions/RoomInfo.cs
+++ b/MatrixUtils.Abstractions/RoomInfo.cs
@@ -27,6 +27,7 @@ public class RoomInfo : NotifyPropertyChanged {
public readonly GenericRoom Room;
public ObservableCollection<StateEventResponse?> StateEvents { get; private set; } = new();
+ public ObservableCollection<StateEventResponse?> Timeline { get; private set; } = new();
private static ConcurrentBag<AuthenticatedHomeserverGeneric> homeserversWithoutEventFormatSupport = new();
private static SvgIdenticonGenerator identiconGenerator = new();
|