blob: 7fac56567c3e769dd607def2851ec7fbb93817ca (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
using System.Collections.Generic;
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();
}
|