blob: e5424cf5c25fd06d350ab8e9f622f23d1687f6ee (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
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; }
}
|