blob: 1b412fefff8dd21ba97282caf840df5d8d4f2ff8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
using System.Text.Json.Serialization;
namespace LibMatrix.Responses;
public class MessagesResponse {
[JsonPropertyName("start")]
public string Start { get; set; }
[JsonPropertyName("end")]
public string? End { get; set; }
[JsonPropertyName("chunk")]
public List<MatrixEventResponse> Chunk { get; set; } = new();
[JsonPropertyName("state")]
public List<MatrixEventResponse> State { get; set; } = new();
}
|