10 lines
269 B
C#
10 lines
269 B
C#
namespace YandexMusic.API.Models.Library
|
|
{
|
|
public class YLibrary
|
|
{
|
|
public string PlaylistUuid { get; set; }
|
|
public int Revision { get; set; }
|
|
public List<YLibraryTrack> Tracks { get; set; }
|
|
public string Uid { get; set; }
|
|
}
|
|
} |