using System.Text.Json.Serialization; using YandexMusic.API.Models.Pins.Items; namespace YandexMusic.API.Models.Pins; public class YPins { [JsonConverter(typeof(YPinConverter))] public List Pins { get; set; } }