Update summaries, Use spans

This commit is contained in:
1hitsong
2022-09-21 17:49:28 -04:00
parent b1771f07e9
commit 35399ce8fe
5 changed files with 31 additions and 29 deletions

View File

@@ -12,17 +12,17 @@ public class LyricLine
/// <param name="start">The lyric start time in ticks.</param>
public LyricLine(string text, long? start = null)
{
Start = start;
Text = text;
Start = start;
}
/// <summary>
/// Gets the text of this lyric line.
/// </summary>
public string Text { get; }
/// <summary>
/// Gets the start time in ticks.
/// </summary>
public long? Start { get; }
/// <summary>
/// Gets the text.
/// </summary>
public string Text { get; }
}

View File

@@ -8,47 +8,47 @@ namespace MediaBrowser.Controller.Lyrics;
public class LyricMetadata
{
/// <summary>
/// Gets or sets Artist - The song artist.
/// Gets or sets the song artist.
/// </summary>
public string? Artist { get; set; }
/// <summary>
/// Gets or sets Album - The album this song is on.
/// Gets or sets the album this song is on.
/// </summary>
public string? Album { get; set; }
/// <summary>
/// Gets or sets Title - The title of the song.
/// Gets or sets the title of the song.
/// </summary>
public string? Title { get; set; }
/// <summary>
/// Gets or sets Author - Creator of the lyric data.
/// Gets or sets the author of the lyric data.
/// </summary>
public string? Author { get; set; }
/// <summary>
/// Gets or sets Length - How long the song is.
/// Gets or sets the length of the song in ticks.
/// </summary>
public long? Length { get; set; }
/// <summary>
/// Gets or sets By - Creator of the LRC file.
/// Gets or sets who the LRC file was created by.
/// </summary>
public string? By { get; set; }
/// <summary>
/// Gets or sets Offset - Offset:+/- Timestamp adjustment in milliseconds.
/// Gets or sets the lyric offset compared to audio in ticks.
/// </summary>
public long? Offset { get; set; }
/// <summary>
/// Gets or sets Creator - The Software used to create the LRC file.
/// Gets or sets the software used to create the LRC file.
/// </summary>
public string? Creator { get; set; }
/// <summary>
/// Gets or sets Version - The version of the Creator used.
/// Gets or sets the version of the creator used.
/// </summary>
public string? Version { get; set; }
}

View File

@@ -9,12 +9,12 @@ namespace MediaBrowser.Controller.Lyrics;
public class LyricResponse
{
/// <summary>
/// Gets or sets Metadata.
/// Gets or sets Metadata for the lyrics.
/// </summary>
public LyricMetadata Metadata { get; set; } = new();
/// <summary>
/// Gets or sets Lyrics.
/// Gets or sets a collection of individual lyric lines.
/// </summary>
public IReadOnlyList<LyricLine> Lyrics { get; set; } = Array.Empty<LyricLine>();
}