Добавьте файлы проекта.
This commit is contained in:
19
YandexMusic.API/Models/Common/YClip.cs
Normal file
19
YandexMusic.API/Models/Common/YClip.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
using YandexMusic.API.Models.Artist;
|
||||
|
||||
namespace YandexMusic.API.Models.Common
|
||||
{
|
||||
public class YClip
|
||||
{
|
||||
public List<YArtist> Artists { get; set; }
|
||||
public string ClipId { get; set; }
|
||||
public List<string> Disclaimers { get; set; }
|
||||
public int Duration { get; set; }
|
||||
public bool Explicit { get; set; }
|
||||
public string PlayerId { get; set; }
|
||||
public string PreviewUrl { get; set; }
|
||||
public string Uuid { get; set; }
|
||||
public string Thumbnail { get; set; }
|
||||
public string Title { get; set; }
|
||||
public List<string> TrackIds { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user