17 lines
420 B
C#
17 lines
420 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace YandexMusic.API.Models.Account;
|
|
|
|
public class YAuthToken
|
|
{
|
|
[JsonPropertyName("csfr_token")]
|
|
public string CsfrToken { get; set; }
|
|
|
|
[JsonPropertyName("track_id")]
|
|
public string TrackId { get; set; }
|
|
|
|
[JsonPropertyName("process_uuid")]
|
|
public string ProcessUuid { get; set; }
|
|
|
|
public Dictionary<string, string> Cookie { get; set; } = new();
|
|
} |