1 files changed, 0 insertions, 27 deletions
diff --git a/MatrixRoomUtils.Core/StateEventTypes/Spec/RoomCreateEventData.cs b/MatrixRoomUtils.Core/StateEventTypes/Spec/RoomCreateEventData.cs
deleted file mode 100644
index 6127028..0000000
--- a/MatrixRoomUtils.Core/StateEventTypes/Spec/RoomCreateEventData.cs
+++ /dev/null
@@ -1,27 +0,0 @@
-using System.Text.Json.Serialization;
-using MatrixRoomUtils.Core.Extensions;
-using MatrixRoomUtils.Core.Interfaces;
-
-namespace MatrixRoomUtils.Core.StateEventTypes.Spec;
-
-[MatrixEvent(EventName = "m.room.create")]
-public class RoomCreateEventData : IStateEventType {
- [JsonPropertyName("room_version")]
- public string? RoomVersion { get; set; }
- [JsonPropertyName("creator")]
- public string? Creator { get; set; }
- [JsonPropertyName("m.federate")]
- public bool? Federate { get; set; }
- [JsonPropertyName("predecessor")]
- public RoomCreatePredecessor? Predecessor { get; set; }
- [JsonPropertyName("type")]
- public string? Type { get; set; }
-
- public class RoomCreatePredecessor {
- [JsonPropertyName("room_id")]
- public string? RoomId { get; set; }
-
- [JsonPropertyName("event_id")]
- public string? EventId { get; set; }
- }
-}
|