mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-26 12:05:04 +01:00
20 lines
399 B
C#
20 lines
399 B
C#
using System.Collections.Generic;
|
|
|
|
namespace MediaBrowser.Controller.Lyrics;
|
|
|
|
/// <summary>
|
|
/// LyricResponse model.
|
|
/// </summary>
|
|
public class LyricResponse
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets Metadata.
|
|
/// </summary>
|
|
public LyricMetadata? Metadata { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets Lyrics.
|
|
/// </summary>
|
|
public IEnumerable<Lyric>? Lyrics { get; set; }
|
|
}
|