about summary refs log tree commit diff
path: root/LibMatrix/Responses/EventIdResponse.cs
blob: 9e232102fd361e6ce5fe4c2cc0da5cb836508779 (plain) (blame)
1
2
3
4
5
6
7
8
using System.Text.Json.Serialization;

namespace LibMatrix.Responses;

public class EventIdResponse {
    [JsonPropertyName("event_id")]
    public required string EventId { get; set; }
}