You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
58 lines
1.4 KiB
58 lines
1.4 KiB
9 months ago
|
namespace MediaBrowser.Model.Lyrics;
|
||
2 years ago
|
|
||
|
/// <summary>
|
||
|
/// LyricMetadata model.
|
||
|
/// </summary>
|
||
|
public class LyricMetadata
|
||
|
{
|
||
|
/// <summary>
|
||
2 years ago
|
/// Gets or sets the song artist.
|
||
2 years ago
|
/// </summary>
|
||
|
public string? Artist { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
2 years ago
|
/// Gets or sets the album this song is on.
|
||
2 years ago
|
/// </summary>
|
||
|
public string? Album { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
2 years ago
|
/// Gets or sets the title of the song.
|
||
2 years ago
|
/// </summary>
|
||
|
public string? Title { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
2 years ago
|
/// Gets or sets the author of the lyric data.
|
||
2 years ago
|
/// </summary>
|
||
|
public string? Author { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
2 years ago
|
/// Gets or sets the length of the song in ticks.
|
||
2 years ago
|
/// </summary>
|
||
2 years ago
|
public long? Length { get; set; }
|
||
2 years ago
|
|
||
|
/// <summary>
|
||
2 years ago
|
/// Gets or sets who the LRC file was created by.
|
||
2 years ago
|
/// </summary>
|
||
|
public string? By { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
2 years ago
|
/// Gets or sets the lyric offset compared to audio in ticks.
|
||
2 years ago
|
/// </summary>
|
||
2 years ago
|
public long? Offset { get; set; }
|
||
2 years ago
|
|
||
|
/// <summary>
|
||
2 years ago
|
/// Gets or sets the software used to create the LRC file.
|
||
2 years ago
|
/// </summary>
|
||
|
public string? Creator { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
2 years ago
|
/// Gets or sets the version of the creator used.
|
||
2 years ago
|
/// </summary>
|
||
|
public string? Version { get; set; }
|
||
9 months ago
|
|
||
|
/// <summary>
|
||
|
/// Gets or sets a value indicating whether this lyric is synced.
|
||
|
/// </summary>
|
||
|
public bool? IsSynced { get; set; }
|
||
2 years ago
|
}
|