using System; using Newtonsoft.Json; namespace VkNet.Model; /// /// Параметр запроса /// [Serializable] public class RequestParam { /// /// Ключ /// [JsonProperty("key")] public string Key { get; set; } /// /// Значение /// [JsonProperty("value")] public string Value { get; set; } }