blob: 8965857a4d1e1c36778881d81a6d3abcbdee3cbf (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
using System.Text.Json.Serialization;
namespace LibMatrix.Responses;
public class ClientVersionsResponse {
[JsonPropertyName("versions")]
public List<string> Versions { get; set; } = new();
[JsonPropertyName("unstable_features")]
public Dictionary<string, bool> UnstableFeatures { get; set; } = new();
}
|