about summary refs log tree commit diff
path: root/MatrixRoomUtils.Core
diff options
context:
space:
mode:
authorTheArcaneBrony <myrainbowdash949@gmail.com>2023-05-01 16:51:57 +0200
committerTheArcaneBrony <myrainbowdash949@gmail.com>2023-05-01 16:51:57 +0200
commit5ad6fcf24b37fed7340ff1a4a8b7707902ef743d (patch)
treed0de0d0df1d075f94b48ba57dfa00cfe42fed24f /MatrixRoomUtils.Core
parentInitial commit (diff)
downloadMatrixUtils-5ad6fcf24b37fed7340ff1a4a8b7707902ef743d.tar.xz
Add policy room discovery ,add room state viewer
Diffstat (limited to 'MatrixRoomUtils.Core')
-rw-r--r--MatrixRoomUtils.Core/StateEventStruct.cs13
1 files changed, 13 insertions, 0 deletions
diff --git a/MatrixRoomUtils.Core/StateEventStruct.cs b/MatrixRoomUtils.Core/StateEventStruct.cs
new file mode 100644
index 0000000..e5424cf
--- /dev/null
+++ b/MatrixRoomUtils.Core/StateEventStruct.cs
@@ -0,0 +1,13 @@
+namespace MatrixRoomUtils;
+
+public struct StateEventStruct
+{
+    public object content { get; set; }
+    public long origin_server_ts { get; set; }
+    public string sender { get; set; }
+    public string state_key { get; set; }
+    public string type { get; set; }
+    public string event_id { get; set; }
+    public string user_id { get; set; }
+    public string replaces_state { get; set; }
+}
\ No newline at end of file