about summary refs log tree commit diff
path: root/MatrixRoomUtils.LibDMSpace/StateEvents
diff options
context:
space:
mode:
authorRory& <root@rory.gay>2024-01-24 02:31:56 +0100
committerRory& <root@rory.gay>2024-01-24 17:05:25 +0100
commit03313562d21d5db9bf6a14ebbeab80e06c883d3a (patch)
treee000546a2ee8e6a886a7ed9fd01ad674178fb7cb /MatrixRoomUtils.LibDMSpace/StateEvents
parentMake RMU installable (diff)
downloadMatrixUtils-03313562d21d5db9bf6a14ebbeab80e06c883d3a.tar.xz
MRU->RMU, fixes, cleanup
Diffstat (limited to 'MatrixRoomUtils.LibDMSpace/StateEvents')
-rw-r--r--MatrixRoomUtils.LibDMSpace/StateEvents/DMRoomInfo.cs14
-rw-r--r--MatrixRoomUtils.LibDMSpace/StateEvents/DMSpaceInfo.cs14
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; } - -}