vknet_vk/VkNet/Model/Audio/AudioArtist.cs
Timofei Jääger 5238a8e143
Удаляет FromJson для Audio и связанных сущностей (#1301)
---------

Co-authored-by: inyutin-maxim <inyutin_maxim@mail.ru>
2023-02-03 19:05:02 +03:00

29 lines
No EOL
660 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 AudioArtist
{
/// <summary>
/// Идентификатор артиста/группы.
/// </summary>
[JsonProperty("id")]
public string Id { get; set; }
/// <summary>
/// Имя артиста/название группы.
/// </summary>
[JsonProperty("name")]
public string Name { get; set; }
/// <summary>
/// Неизвестно (получено экспериментально).
/// </summary>
[JsonProperty("domain")]
public string Domain { get; set; }
}