blob: 8e0a92a835830bda10adae0b7ab68fbe538a1640 (
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();
}
|