about summary refs log tree commit diff
path: root/MatrixRoomUtils.Core/StateEventTypes/Common/RoomEmotesEventData.cs
diff options
context:
space:
mode:
authorEmma@Rory& <root@rory.gay>2023-08-14 05:07:51 +0200
committerEmma@Rory& <root@rory.gay>2023-08-14 05:11:21 +0200
commitaa7026a17ededf7c181ed269c6388491d96e1b1e (patch)
tree963b45cebbfefb3c5cebaf4ba7134a0e32eb0147 /MatrixRoomUtils.Core/StateEventTypes/Common/RoomEmotesEventData.cs
parentAdd latest code before splitting projects (diff)
downloadMatrixUtils-aa7026a17ededf7c181ed269c6388491d96e1b1e.tar.xz
Split LibMatrix into submodule
Diffstat (limited to 'MatrixRoomUtils.Core/StateEventTypes/Common/RoomEmotesEventData.cs')
-rw-r--r--MatrixRoomUtils.Core/StateEventTypes/Common/RoomEmotesEventData.cs26
1 files changed, 0 insertions, 26 deletions
diff --git a/MatrixRoomUtils.Core/StateEventTypes/Common/RoomEmotesEventData.cs b/MatrixRoomUtils.Core/StateEventTypes/Common/RoomEmotesEventData.cs
deleted file mode 100644
index c263a3a..0000000
--- a/MatrixRoomUtils.Core/StateEventTypes/Common/RoomEmotesEventData.cs
+++ /dev/null
@@ -1,26 +0,0 @@
-using System.Text.Json.Serialization;
-using MatrixRoomUtils.Core.Extensions;
-using MatrixRoomUtils.Core.Interfaces;
-
-namespace MatrixRoomUtils.Core.StateEventTypes.Common;
-
-[MatrixEvent(EventName = "im.ponies.room_emotes")]
-public class RoomEmotesEventData : IStateEventType {
-    [JsonPropertyName("emoticons")]
-    public Dictionary<string, EmoticonData>? Emoticons { get; set; }
-
-    [JsonPropertyName("images")]
-    public Dictionary<string, EmoticonData>? Images { get; set; }
-
-    [JsonPropertyName("pack")]
-    public PackInfo? Pack { get; set; }
-
-    public class EmoticonData {
-        [JsonPropertyName("url")]
-        public string? Url { get; set; }
-    }
-
-    public class PackInfo {
-
-    }
-}