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

namespace MediaBrowser.Model.Lyrics;

/// <summary>
/// LyricResponse model.
/// </summary>
public class LyricResponse
{
    /// <summary>
    /// Gets or sets the lyric stream.
    /// </summary>
    public required Stream Stream { get; set; }

    /// <summary>
    /// Gets or sets the lyric format.
    /// </summary>
    public required string Format { get; set; }
}