1 files changed, 20 insertions, 0 deletions
diff --git a/MxApiExtensions.Classes.LibMatrix/RoomInfoEntry.cs b/MxApiExtensions.Classes.LibMatrix/RoomInfoEntry.cs
new file mode 100644
index 0000000..6ea188e
--- /dev/null
+++ b/MxApiExtensions.Classes.LibMatrix/RoomInfoEntry.cs
@@ -0,0 +1,20 @@
+using System.Text.Json.Serialization;
+using LibMatrix.Responses;
+
+namespace LibMatrix.MxApiExtensions;
+
+/// <summary>
+/// Generic room info, this will most likely be out of date due to caching!
+/// This is only useful for giving a rough idea of the room state.
+/// </summary>
+public class RoomInfoEntry {
+ public string RoomId { get; set; }
+ public List<StateEventResponse?> RoomState { get; set; }
+
+ public int StateCount { get; set; }
+
+ public Dictionary<string, int> MemberCounts { get; set; } = new();
+
+ // [JsonIgnore]
+ public DateTime ExpiresAt { get; set; } = DateTime.Now.AddMinutes(1);
+}
|