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.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/LibMatrix/Interfaces/IStateEventType.cs b/LibMatrix/Interfaces/IStateEventType.cs
index f2e4a3b..b187970 100644
--- a/LibMatrix/Interfaces/IStateEventType.cs
+++ b/LibMatrix/Interfaces/IStateEventType.cs
@@ -4,10 +4,10 @@ namespace LibMatrix.Interfaces;
 
 public abstract class EventContent {
     [JsonPropertyName("m.relates_to")]
-    public virtual MessageRelatesTo? RelatesTo { get; set; }
+    public MessageRelatesTo? RelatesTo { get; set; }
 
     [JsonPropertyName("m.new_content")]
-    public virtual EventContent? NewContent { get; set; }
+    public EventContent? NewContent { get; set; }
 
     public abstract class MessageRelatesTo {
         [JsonPropertyName("m.in_reply_to")]