From 5ad6fcf24b37fed7340ff1a4a8b7707902ef743d Mon Sep 17 00:00:00 2001 From: TheArcaneBrony Date: Mon, 1 May 2023 16:51:57 +0200 Subject: Add policy room discovery ,add room state viewer --- MatrixRoomUtils.Core/StateEventStruct.cs | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 MatrixRoomUtils.Core/StateEventStruct.cs (limited to 'MatrixRoomUtils.Core/StateEventStruct.cs') 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 -- cgit 1.5.1