about summary refs log tree commit diff
path: root/MatrixRoomUtils.Core/StateEventTypes/Spec/RoomMessageEventData.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MatrixRoomUtils.Core/StateEventTypes/Spec/RoomMessageEventData.cs')
-rw-r--r--MatrixRoomUtils.Core/StateEventTypes/Spec/RoomMessageEventData.cs19
1 files changed, 0 insertions, 19 deletions
diff --git a/MatrixRoomUtils.Core/StateEventTypes/Spec/RoomMessageEventData.cs b/MatrixRoomUtils.Core/StateEventTypes/Spec/RoomMessageEventData.cs
deleted file mode 100644
index 2c56b88..0000000
--- a/MatrixRoomUtils.Core/StateEventTypes/Spec/RoomMessageEventData.cs
+++ /dev/null
@@ -1,19 +0,0 @@
-using System.Text.Json.Serialization;
-using MatrixRoomUtils.Core.Extensions;
-using MatrixRoomUtils.Core.Interfaces;
-
-namespace MatrixRoomUtils.Core.StateEventTypes.Spec; 
-
-[MatrixEvent(EventName = "m.room.message")]
-public class RoomMessageEventData : IStateEventType {
-    [JsonPropertyName("body")]
-    public string Body { get; set; }
-    [JsonPropertyName("msgtype")]
-    public string MessageType { get; set; } = "m.notice";
-
-    [JsonPropertyName("formatted_body")]
-    public string FormattedBody { get; set; }
-
-    [JsonPropertyName("format")]
-    public string Format { get; set; }
-}
\ No newline at end of file