about summary refs log tree commit diff
path: root/MatrixRoomUtils.Core/StateEventStruct.cs
blob: bfda59478b9f8268ea1ea8dd051dcc4b7a7e732f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
namespace MatrixRoomUtils.Core;

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; }
}