using System; namespace MediaBrowser.Controller.Lyrics; /// /// LyricMetadata model. /// public class LyricMetadata { /// /// Gets or sets Artist - The song artist. /// public string? Artist { get; set; } /// /// Gets or sets Album - The album this song is on. /// public string? Album { get; set; } /// /// Gets or sets Title - The title of the song. /// public string? Title { get; set; } /// /// Gets or sets Author - Creator of the lyric data. /// public string? Author { get; set; } /// /// Gets or sets Length - How long the song is. /// public long? Length { get; set; } /// /// Gets or sets By - Creator of the LRC file. /// public string? By { get; set; } /// /// Gets or sets Offset - Offset:+/- Timestamp adjustment in milliseconds. /// public long? Offset { get; set; } /// /// Gets or sets Creator - The Software used to create the LRC file. /// public string? Creator { get; set; } /// /// Gets or sets Version - The version of the Creator used. /// public string? Version { get; set; } }