5 files changed, 5 insertions, 5 deletions
diff --git a/MatrixRoomUtils.LibDMSpace/DMSpaceConfiguration.cs b/MatrixUtils.LibDMSpace/DMSpaceConfiguration.cs
index dcb7098..571d09d 100644
--- a/MatrixRoomUtils.LibDMSpace/DMSpaceConfiguration.cs
+++ b/MatrixUtils.LibDMSpace/DMSpaceConfiguration.cs
@@ -1,6 +1,6 @@
using System.Text.Json.Serialization;
-namespace MatrixRoomUtils.LibDMSpace;
+namespace MatrixUtils.LibDMSpace;
//gay.rory.dm_space
public class DMSpaceConfiguration {
diff --git a/MatrixRoomUtils.LibDMSpace/DMSpaceRoom.cs b/MatrixUtils.LibDMSpace/DMSpaceRoom.cs
index 1cf7064..3fb0ab6 100644
--- a/MatrixRoomUtils.LibDMSpace/DMSpaceRoom.cs
+++ b/MatrixUtils.LibDMSpace/DMSpaceRoom.cs
@@ -2,9 +2,9 @@ using ArcaneLibs.Extensions;
using LibMatrix;
using LibMatrix.Homeservers;
using LibMatrix.RoomTypes;
-using MatrixRoomUtils.LibDMSpace.StateEvents;
+using MatrixUtils.LibDMSpace.StateEvents;
-namespace MatrixRoomUtils.LibDMSpace;
+namespace MatrixUtils.LibDMSpace;
public class DMSpaceRoom(AuthenticatedHomeserverGeneric homeserver, string roomId) : SpaceRoom(homeserver, roomId) {
private readonly GenericRoom _room;
diff --git a/MatrixRoomUtils.LibDMSpace/MatrixRoomUtils.LibDMSpace.csproj b/MatrixUtils.LibDMSpace/MatrixUtils.LibDMSpace.csproj
index 72c1666..72c1666 100644
--- a/MatrixRoomUtils.LibDMSpace/MatrixRoomUtils.LibDMSpace.csproj
+++ b/MatrixUtils.LibDMSpace/MatrixUtils.LibDMSpace.csproj
diff --git a/MatrixRoomUtils.LibDMSpace/StateEvents/DMRoomInfo.cs b/MatrixUtils.LibDMSpace/StateEvents/DMRoomInfo.cs
index 716a3ac..5aa62d7 100644
--- a/MatrixRoomUtils.LibDMSpace/StateEvents/DMRoomInfo.cs
+++ b/MatrixUtils.LibDMSpace/StateEvents/DMRoomInfo.cs
@@ -2,7 +2,7 @@ using System.Text.Json.Serialization;
using LibMatrix.EventTypes;
using LibMatrix.Interfaces;
-namespace MatrixRoomUtils.LibDMSpace.StateEvents;
+namespace MatrixUtils.LibDMSpace.StateEvents;
[MatrixEvent(EventName = EventId)]
public class DMRoomInfo : TimelineEventContent {
diff --git a/MatrixRoomUtils.LibDMSpace/StateEvents/DMSpaceInfo.cs b/MatrixUtils.LibDMSpace/StateEvents/DMSpaceInfo.cs
index 26e2b90..0df1913 100644
--- a/MatrixRoomUtils.LibDMSpace/StateEvents/DMSpaceInfo.cs
+++ b/MatrixUtils.LibDMSpace/StateEvents/DMSpaceInfo.cs
@@ -2,7 +2,7 @@ using System.Text.Json.Serialization;
using LibMatrix.EventTypes;
using LibMatrix.Interfaces;
-namespace MatrixRoomUtils.LibDMSpace.StateEvents;
+namespace MatrixUtils.LibDMSpace.StateEvents;
[MatrixEvent(EventName = EventId)]
public class DMSpaceInfo : TimelineEventContent {
|