You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
390 B
20 lines
390 B
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; }
|
|
}
|