diff options
author | Rory& <root@rory.gay> | 2024-05-03 19:40:00 +0200 |
---|---|---|
committer | Rory& <root@rory.gay> | 2024-05-03 19:40:00 +0200 |
commit | 222f475dfd662980d5e0b9f27efa951f91604364 (patch) | |
tree | 71777992828134ee89249a7e37339bc4aa89ba86 /MatrixUtils.Abstractions | |
parent | Cleanup, work on index2, some tooling updates (diff) | |
download | MatrixUtils-222f475dfd662980d5e0b9f27efa951f91604364.tar.xz |
All kinds of changes
Diffstat (limited to 'MatrixUtils.Abstractions')
-rw-r--r-- | MatrixUtils.Abstractions/RoomInfo.cs | 1 |
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(); |