vknet_vk/VkNet/Model/StorageObject.cs
Инютин Максим Николаевич 932d99d61a Применяет стили кода
2022-08-02 00:22:12 +03:00

23 lines
No EOL
422 B
C#

using System;
using Newtonsoft.Json;
namespace VkNet.Model;
/// <summary>
/// Ответ метода Storage.Get
/// </summary>
[Serializable]
public class StorageObject
{
/// <summary>
/// Ключ
/// </summary>
[JsonProperty(propertyName: "key")]
public string Key { get; set; }
/// <summary>
/// Значение
/// </summary>
[JsonProperty(propertyName: "value")]
public string Value { get; set; }
}