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

namespace LibMatrix;

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