mirror of
https://github.com/vknet/vk.git
synced 2026-07-10 00:18:28 +00:00
35 lines
No EOL
562 B
C#
35 lines
No EOL
562 B
C#
using System;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace VkNet.Model;
|
|
|
|
/// <summary>
|
|
/// Размер
|
|
/// </summary>
|
|
[Serializable]
|
|
public class CoverSize
|
|
{
|
|
/// <summary>
|
|
/// URL
|
|
/// </summary>
|
|
[JsonProperty("url")]
|
|
public Uri Url { get; set; }
|
|
|
|
/// <summary>
|
|
/// Ширина
|
|
/// </summary>
|
|
[JsonProperty("width")]
|
|
public long Width { get; set; }
|
|
|
|
/// <summary>
|
|
/// Высота
|
|
/// </summary>
|
|
[JsonProperty("height")]
|
|
public long Height { get; set; }
|
|
|
|
/// <summary>
|
|
/// Тип
|
|
/// </summary>
|
|
[JsonProperty("type")]
|
|
public string Type { get; set; }
|
|
} |