aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Lyrics/LyricResponse.cs
blob: 0d52b5ec509f1da900b5e48f33c0db2149f8059b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
using System;
using System.Collections.Generic;

namespace MediaBrowser.Controller.Lyrics;

/// <summary>
/// LyricResponse model.
/// </summary>
public class LyricResponse
{
    /// <summary>
    /// Gets or sets Metadata for the lyrics.
    /// </summary>
    public LyricMetadata Metadata { get; set; } = new();

    /// <summary>
    /// Gets or sets a collection of individual lyric lines.
    /// </summary>
    public IReadOnlyList<LyricLine> Lyrics { get; set; } = Array.Empty<LyricLine>();
}