namespace Jellyfin.Api.Models.UserDtos { /// /// Lyric dto. /// public class Lyric { /// /// Gets or sets the start time (ticks). /// public double? Start { get; set; } /// /// Gets or sets the text. /// public string Text { get; set; } = string.Empty; } }