Files
YandexMusic/YandexMusic.API/Models/Common/YVideo.cs
2026-04-10 15:05:32 +03:00

10 lines
271 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; }
}