Files
YandexMusic/YandexMusic.API/Models/Common/YVideo.cs
2026-04-10 12:12:33 +03:00

11 lines
305 B
C#

namespace YandexMusic.API.Models.Common
{
public class YVideo
{
public string Cover { get; set; }
public string EmbedUrl { get; set; }
public string Provider { get; set; }
public string ProviderVideoId { get; set; }
public string Title { get; set; }
}
}