using System;
using Newtonsoft.Json;
namespace VkNet.Model;
///
/// Копия изображения обложки.
///
[Serializable]
public class Image
{
///
/// URL копии;
///
[JsonProperty("url")]
public Uri Url { get; set; }
///
/// Ширина копии;
///
[JsonProperty("width")]
public int Width { get; set; }
///
/// Высота копии.
///
[JsonProperty("height")]
public int Height { get; set; }
}