about summary refs log tree commit diff
path: root/LibMatrix/EventTypes/Spec/Ephemeral/RoomTypingEventContent.cs
diff options
context:
space:
mode:
Diffstat (limited to 'LibMatrix/EventTypes/Spec/Ephemeral/RoomTypingEventContent.cs')
-rw-r--r--LibMatrix/EventTypes/Spec/Ephemeral/RoomTypingEventContent.cs12
1 files changed, 0 insertions, 12 deletions
diff --git a/LibMatrix/EventTypes/Spec/Ephemeral/RoomTypingEventContent.cs b/LibMatrix/EventTypes/Spec/Ephemeral/RoomTypingEventContent.cs
deleted file mode 100644
index b947096..0000000
--- a/LibMatrix/EventTypes/Spec/Ephemeral/RoomTypingEventContent.cs
+++ /dev/null
@@ -1,12 +0,0 @@
-using System.Text.Json.Serialization;
-using LibMatrix.Interfaces;
-
-namespace LibMatrix.EventTypes.Spec.State;
-
-[MatrixEvent(EventName = EventId)]
-public class RoomTypingEventContent : TimelineEventContent {
-    public const string EventId = "m.typing";
-
-    [JsonPropertyName("user_ids")]
-    public string[]? UserIds { get; set; }
-}