about summary refs log tree commit diff
path: root/MatrixUtils.LibDMSpace/StateEvents/DMRoomInfo.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MatrixUtils.LibDMSpace/StateEvents/DMRoomInfo.cs')
-rw-r--r--MatrixUtils.LibDMSpace/StateEvents/DMRoomInfo.cs9
1 files changed, 6 insertions, 3 deletions
diff --git a/MatrixUtils.LibDMSpace/StateEvents/DMRoomInfo.cs b/MatrixUtils.LibDMSpace/StateEvents/DMRoomInfo.cs
index 5aa62d7..bc595b5 100644
--- a/MatrixUtils.LibDMSpace/StateEvents/DMRoomInfo.cs
+++ b/MatrixUtils.LibDMSpace/StateEvents/DMRoomInfo.cs
@@ -5,10 +5,13 @@ using LibMatrix.Interfaces;
 namespace MatrixUtils.LibDMSpace.StateEvents;
 
 [MatrixEvent(EventName = EventId)]
-public class DMRoomInfo : TimelineEventContent {
+public class DMRoomInfo : EventContent {
     public const string EventId = "gay.rory.dm_room_info";
-    [JsonPropertyName("remote_users")]
-    public List<string> RemoteUsers { get; set; }
+    // [JsonPropertyName("remote_users")]
+    // public List<string> RemoteUsers { get; set; }
 
+    [JsonPropertyName("attributed_user")]
+    public string AttributedUser { get; set; }
+    
 
 }