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

namespace LibMatrix;

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