about summary refs log tree commit diff
path: root/LibMatrix/Interfaces/EventContent.cs
diff options
context:
space:
mode:
Diffstat (limited to 'LibMatrix/Interfaces/EventContent.cs')
-rw-r--r--LibMatrix/Interfaces/EventContent.cs5
1 files changed, 4 insertions, 1 deletions
diff --git a/LibMatrix/Interfaces/EventContent.cs b/LibMatrix/Interfaces/EventContent.cs
index 51671dd..ec09c7e 100644
--- a/LibMatrix/Interfaces/EventContent.cs
+++ b/LibMatrix/Interfaces/EventContent.cs
@@ -3,11 +3,14 @@ using System.Text.Json.Serialization;
 namespace LibMatrix.Interfaces;
 
 public abstract class EventContent {
+    
+}
+public abstract class TimelineEventContent : EventContent {
     [JsonPropertyName("m.relates_to")]
     public MessageRelatesTo? RelatesTo { get; set; }
 
     // [JsonPropertyName("m.new_content")]
-    // public EventContent? NewContent { get; set; }
+    // public TimelineEventContent? NewContent { get; set; }
 
     public class MessageRelatesTo {
         [JsonPropertyName("m.in_reply_to")]