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 17:37:38 -04:00
/// <summary>
/// LyricResponse model.
/// </summary>
public class LyricDto
{
/// <summary>
2022-09-21 17:49:28 -04:00
/// Gets or sets Metadata for the lyrics.
/// </summary>
2022-09-18 21:17:53 -04:00
public LyricMetadata Metadata { get; set; } = new();
2022-09-17 17:37:38 -04:00
/// <summary>
2022-09-21 17:49:28 -04:00
/// Gets or sets a collection of individual lyric lines.
2022-09-17 17:37:38 -04:00
/// </summary>
public IReadOnlyList<LyricLine> Lyrics { get; set; } = [];
}