jellyfin/MediaBrowser.Model/Lyrics/LyricDto.cs

20 lines
455 B
C#
Raw Normal View History

using System.Collections.Generic;
namespace MediaBrowser.Model.Lyrics;
2022-09-17 23:37:38 +02:00
/// <summary>
/// LyricResponse model.
/// </summary>
public class LyricDto
{
/// <summary>
2022-09-21 23:49:28 +02:00
/// Gets or sets Metadata for the lyrics.
/// </summary>
2022-09-19 03:17:53 +02:00
public LyricMetadata Metadata { get; set; } = new();
2022-09-17 23:37:38 +02:00
/// <summary>
2022-09-21 23:49:28 +02:00
/// Gets or sets a collection of individual lyric lines.
2022-09-17 23:37:38 +02:00
/// </summary>
public IReadOnlyList<LyricLine> Lyrics { get; set; } = [];
}