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

namespace LibMatrix;

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