about summary refs log tree commit diff
path: root/LibMatrix/Interfaces/IStateEventType.cs
diff options
context:
space:
mode:
Diffstat (limited to 'LibMatrix/Interfaces/IStateEventType.cs')
-rw-r--r--LibMatrix/Interfaces/IStateEventType.cs23
1 files changed, 0 insertions, 23 deletions
diff --git a/LibMatrix/Interfaces/IStateEventType.cs b/LibMatrix/Interfaces/IStateEventType.cs
deleted file mode 100644
index b187970..0000000
--- a/LibMatrix/Interfaces/IStateEventType.cs
+++ /dev/null
@@ -1,23 +0,0 @@
-using System.Text.Json.Serialization;
-
-namespace LibMatrix.Interfaces;
-
-public abstract class EventContent {
-    [JsonPropertyName("m.relates_to")]
-    public MessageRelatesTo? RelatesTo { get; set; }
-
-    [JsonPropertyName("m.new_content")]
-    public EventContent? NewContent { get; set; }
-
-    public abstract class MessageRelatesTo {
-        [JsonPropertyName("m.in_reply_to")]
-        public EventInReplyTo? InReplyTo { get; set; }
-
-
-
-        public abstract class EventInReplyTo {
-            [JsonPropertyName("event_id")]
-            public string EventId { get; set; }
-        }
-    }
-}