about summary refs log tree commit diff
path: root/LibMatrix/Responses/EventIdResponse.cs
diff options
context:
space:
mode:
Diffstat (limited to 'LibMatrix/Responses/EventIdResponse.cs')
-rw-r--r--LibMatrix/Responses/EventIdResponse.cs8
1 files changed, 8 insertions, 0 deletions
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