12 lines
308 B
C#
12 lines
308 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace YandexMusic.API.Models.Passport;
|
|
|
|
public class YPassportSession
|
|
{
|
|
[JsonPropertyName("track_id")]
|
|
public string TrackId { get; set; } = string.Empty;
|
|
|
|
[JsonPropertyName("default_uid")]
|
|
public string DefaultUid { get; set; } = string.Empty;
|
|
} |