2 files changed, 0 insertions, 28 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; }
-
-
-}
diff --git a/MatrixRoomUtils.LibDMSpace/StateEvents/DMSpaceInfo.cs b/MatrixRoomUtils.LibDMSpace/StateEvents/DMSpaceInfo.cs
deleted file mode 100644
index 26e2b90..0000000
--- a/MatrixRoomUtils.LibDMSpace/StateEvents/DMSpaceInfo.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 DMSpaceInfo : TimelineEventContent {
- public const string EventId = "gay.rory.dm_space_info";
-
- [JsonPropertyName("is_layered")]
- public bool LayerByUser { get; set; }
-
-}
|