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