using System.Text.Json.Serialization; namespace LibMatrix.Responses; public class ClientVersionsResponse { [JsonPropertyName("versions")] public List Versions { get; set; } = new(); [JsonPropertyName("unstable_features")] public Dictionary UnstableFeatures { get; set; } = new(); }