From 6975119b7d21cafdd0620d35b9542fb5d47ef392 Mon Sep 17 00:00:00 2001 From: Rory& Date: Fri, 20 Jun 2025 04:50:00 +0200 Subject: Basic federation, move some response classes to the right namespace --- LibMatrix/Responses/EventIdResponse.cs | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 LibMatrix/Responses/EventIdResponse.cs (limited to 'LibMatrix/Responses/EventIdResponse.cs') diff --git a/LibMatrix/Responses/EventIdResponse.cs b/LibMatrix/Responses/EventIdResponse.cs new file mode 100644 index 0000000..9e23210 --- /dev/null +++ b/LibMatrix/Responses/EventIdResponse.cs @@ -0,0 +1,8 @@ +using System.Text.Json.Serialization; + +namespace LibMatrix.Responses; + +public class EventIdResponse { + [JsonPropertyName("event_id")] + public required string EventId { get; set; } +} \ No newline at end of file -- cgit 1.5.1