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-07-24 20:56:42 +0200
committerEmma@Rory& <root@rory.gay>2023-07-24 20:56:42 +0200
commit5495a35403d285007d67f503042720302efdf94c (patch)
tree3db4dc545ce3ad252f82a577ecad4150320c1ba3 /MatrixRoomUtils.Core/StateEventTypes/Common/RoomEmotesEventData.cs
parentChange max line width from 120 to 180 (diff)
downloadMatrixUtils-5495a35403d285007d67f503042720302efdf94c.tar.xz
Code cleanup
Diffstat (limited to 'MatrixRoomUtils.Core/StateEventTypes/Common/RoomEmotesEventData.cs')
-rw-r--r--MatrixRoomUtils.Core/StateEventTypes/Common/RoomEmotesEventData.cs16
1 files changed, 8 insertions, 8 deletions
diff --git a/MatrixRoomUtils.Core/StateEventTypes/Common/RoomEmotesEventData.cs b/MatrixRoomUtils.Core/StateEventTypes/Common/RoomEmotesEventData.cs
index 633998c..c263a3a 100644
--- a/MatrixRoomUtils.Core/StateEventTypes/Common/RoomEmotesEventData.cs
+++ b/MatrixRoomUtils.Core/StateEventTypes/Common/RoomEmotesEventData.cs
@@ -2,25 +2,25 @@ using System.Text.Json.Serialization;
 using MatrixRoomUtils.Core.Extensions;
 using MatrixRoomUtils.Core.Interfaces;
 
-namespace MatrixRoomUtils.Core.StateEventTypes.Common; 
+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 {
-    
-}
\ No newline at end of file
+    public class PackInfo {
+
+    }
+}