using System.Text.Json.Serialization; using YandexMusic.API.Models.Account; namespace YandexMusic.API.Models.Passport; public class YPassportTrack : YAuthBase { [JsonPropertyName("track_id")] public string TrackId { get; set; } [JsonPropertyName("csrf_token")] public string CsrfToken { get; set; } }