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

12 lines
355 B
C#

namespace YandexMusic.API.Models.Common
{
public class YLyrics
{
public string Id { get; set; }
public string Lyrics { get; set; }
public string FullLyrics { get; set; }
public bool HasRights { get; set; }
public bool ShowTranslation { get; set; }
public string TextLanguage { get; set; }
}
}