about summary refs log tree commit diff
path: root/LibMatrix/EventIdResponse.cs
diff options
context:
space:
mode:
authorRory& <root@rory.gay>2024-03-22 16:38:53 +0000
committerRory& <root@rory.gay>2024-03-22 16:38:53 +0000
commit2b566a31b68f14d51faae61cbfbe359d0691a890 (patch)
treebfa1c6cc563f904bcae7c3461df8eb79e4e50290 /LibMatrix/EventIdResponse.cs
parentNew messagebuilder stuff, table-based help command (diff)
downloadLibMatrix-2b566a31b68f14d51faae61cbfbe359d0691a890.tar.xz
Changes
Diffstat (limited to 'LibMatrix/EventIdResponse.cs')
-rw-r--r--LibMatrix/EventIdResponse.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/LibMatrix/EventIdResponse.cs b/LibMatrix/EventIdResponse.cs
index 0a7cfd9..4d715a4 100644
--- a/LibMatrix/EventIdResponse.cs
+++ b/LibMatrix/EventIdResponse.cs
@@ -2,7 +2,7 @@ using System.Text.Json.Serialization;
 
 namespace LibMatrix;
 
-public class EventIdResponse(string eventId) {
+public class EventIdResponse {
     [JsonPropertyName("event_id")]
-    public string EventId { get; set; } = eventId;
+    public string EventId { get; set; }
 }
\ No newline at end of file