aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Lyrics/LyricMetadata.cs
blob: c4f03348929bfdccbfa5d8fa11fd3d4317449d53 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
namespace MediaBrowser.Controller.Lyrics;

/// <summary>
/// LyricMetadata model.
/// </summary>
public class LyricMetadata
{
    /// <summary>
    /// Gets or sets the song artist.
    /// </summary>
    public string? Artist { get; set; }

    /// <summary>
    /// Gets or sets the album this song is on.
    /// </summary>
    public string? Album { get; set; }

    /// <summary>
    /// Gets or sets the title of the song.
    /// </summary>
    public string? Title { get; set; }

    /// <summary>
    /// Gets or sets the author of the lyric data.
    /// </summary>
    public string? Author { get; set; }

    /// <summary>
    /// Gets or sets the length of the song in ticks.
    /// </summary>
    public long? Length { get; set; }

    /// <summary>
    /// Gets or sets who the LRC file was created by.
    /// </summary>
    public string? By { get; set; }

    /// <summary>
    /// Gets or sets the lyric offset compared to audio in ticks.
    /// </summary>
    public long? Offset { get; set; }

    /// <summary>
    /// Gets or sets the software used to create the LRC file.
    /// </summary>
    public string? Creator { get; set; }

    /// <summary>
    /// Gets or sets the version of the creator used.
    /// </summary>
    public string? Version { get; set; }
}