about summary refs log tree commit diff
path: root/MatrixRoomUtils.LibDMSpace/StateEvents/DMRoomInfo.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MatrixRoomUtils.LibDMSpace/StateEvents/DMRoomInfo.cs')
-rw-r--r--MatrixRoomUtils.LibDMSpace/StateEvents/DMRoomInfo.cs14
1 files changed, 0 insertions, 14 deletions
diff --git a/MatrixRoomUtils.LibDMSpace/StateEvents/DMRoomInfo.cs b/MatrixRoomUtils.LibDMSpace/StateEvents/DMRoomInfo.cs
deleted file mode 100644

index 716a3ac..0000000 --- a/MatrixRoomUtils.LibDMSpace/StateEvents/DMRoomInfo.cs +++ /dev/null
@@ -1,14 +0,0 @@ -using System.Text.Json.Serialization; -using LibMatrix.EventTypes; -using LibMatrix.Interfaces; - -namespace MatrixRoomUtils.LibDMSpace.StateEvents; - -[MatrixEvent(EventName = EventId)] -public class DMRoomInfo : TimelineEventContent { - public const string EventId = "gay.rory.dm_room_info"; - [JsonPropertyName("remote_users")] - public List<string> RemoteUsers { get; set; } - - -}