blob: 6a042290ab59cdeb0d3aa5620341260979d7d99a (
plain) (
blame)
1
2
3
4
5
6
7
8
|
using System.Text.Json.Serialization;
namespace LibMatrix;
public class EventIdResponse {
[JsonPropertyName("event_id")]
public required string EventId { get; set; }
}
|