mirror of
https://github.com/vknet/vk.git
synced 2026-07-11 17:08:26 +00:00
23 lines
No EOL
422 B
C#
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; }
|
|
} |