Полный рефакторинг api. Вынесено отдельно api passport
This commit is contained in:
12
YandexMusic.API/Models/Passport/YPassportSession.cs
Normal file
12
YandexMusic.API/Models/Passport/YPassportSession.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
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;
|
||||
}
|
||||
Reference in New Issue
Block a user