aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Api/Models/UserDtos/Lyric.cs
blob: 2794cd78a02419826747b6d8b05699f3806c06a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
namespace Jellyfin.Api.Models.UserDtos
{
    /// <summary>
    /// Lyric dto.
    /// </summary>
    public class Lyric
    {
        /// <summary>
        /// Gets or sets the start time (ticks).
        /// </summary>
        public double Start { get; set; }

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