#nullable disable using Newtonsoft.Json; using Newtonsoft.Json.Serialization; namespace West.TelegramBot.ChatQuotes.Model.Quote; [JsonObject(NamingStrategyType = typeof(CamelCaseNamingStrategy))] public class Response { public bool Ok { get; set; } public Result Result { get; set; } public static Response FromJson(string json) => JsonConvert.DeserializeObject(json, ChatQuotes.SerializerSettings); }