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

29 lines
No EOL
608 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using Newtonsoft.Json;
namespace VkNet.Model;
/// <summary>
/// Информация о фото пользователя/сообщества
/// </summary>
[Serializable]
public class AudioCatalogItemImage
{
/// <summary>
/// Ширина.
/// </summary>
[JsonProperty("width")]
public long Width { get; set; }
/// <summary>
/// Высота.
/// </summary>
[JsonProperty("height")]
public long Height { get; set; }
/// <summary>
/// Ссылка фото пользователя/сообщества.
/// </summary>
[JsonProperty("url")]
public Uri Url { get; set; }
}