mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-24 13:57:20 -05:00
24 lines
507 B
C#
24 lines
507 B
C#
namespace Jellyfin.Api.Models.UserDtos
|
|
{
|
|
/// <summary>
|
|
/// Lyric dto.
|
|
/// </summary>
|
|
public class Lyrics
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the start.
|
|
/// </summary>
|
|
public double? Start { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the text.
|
|
/// </summary>
|
|
public string? Text { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the error.
|
|
/// </summary>
|
|
public string? Error { get; set; }
|
|
}
|
|
}
|