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

11 lines
317 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; }
}