blob: a7feeca285ae32770e1706261d921663a92ad19d (
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; }
}
|