aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Lyrics/Lyric.cs
blob: 56a0a8a72da4711e75d4937b4fdb3ca953134f9b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
namespace MediaBrowser.Controller.Lyrics
{
    /// <summary>
    /// Lyric model.
    /// </summary>
    public class Lyric
    {
        /// <summary>
        /// Gets or sets the start time in ticks.
        /// </summary>
        public double? Start { get; set; }

        /// <summary>
        /// Gets or sets the text.
        /// </summary>
        public string Text { get; set; } = string.Empty;
    }
}