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.
23 lines
497 B
23 lines
497 B
9 months ago
|
namespace MediaBrowser.Model.Lyrics;
|
||
|
|
||
|
/// <summary>
|
||
|
/// The remote lyric info dto.
|
||
|
/// </summary>
|
||
|
public class RemoteLyricInfoDto
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Gets or sets the id for the lyric.
|
||
|
/// </summary>
|
||
|
public required string Id { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// Gets the provider name.
|
||
|
/// </summary>
|
||
|
public required string ProviderName { get; init; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// Gets the lyrics.
|
||
|
/// </summary>
|
||
|
public required LyricDto Lyrics { get; init; }
|
||
|
}
|