using System;
using Newtonsoft.Json;
namespace VkNet.Model;
///
/// Габариты товара
///
[Serializable]
public class Dimensions
{
///
/// Ширина в миллиметрах
///
[JsonProperty("width")]
public int Width { get; set; }
///
/// Высота в миллиметрах
///
[JsonProperty("height")]
public int Height { get; set; }
///
/// Длина в миллиметрах
///
[JsonProperty("length")]
public int Length { get; set; }
}