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

namespace MatrixRoomUtils.Core;

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