blob: 31a95b8c9704ef984f085d1ae5a65c3f795af1fd (
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; } = null!;
}
|