MatrixRoomUtils

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | LICENSE

StateEventStruct.cs (400B)


      1 namespace MatrixRoomUtils.Core;
      2 
      3 public struct StateEventStruct
      4 {
      5     public object content { get; set; }
      6     public long origin_server_ts { get; set; }
      7     public string sender { get; set; }
      8     public string state_key { get; set; }
      9     public string type { get; set; }
     10     public string event_id { get; set; }
     11     public string user_id { get; set; }
     12     public string replaces_state { get; set; }
     13 }