diff options
Diffstat (limited to 'MatrixRoomUtils.Core')
-rw-r--r-- | MatrixRoomUtils.Core/StateEventStruct.cs | 13 |
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 |