24 lines
593 B
C#
24 lines
593 B
C#
// <copyright file="LyricDto.cs" company="PlaceholderCompany">
|
|
// Copyright (c) PlaceholderCompany. All rights reserved.
|
|
// </copyright>
|
|
|
|
using System.Collections.Generic;
|
|
|
|
namespace MediaBrowser.Model.Lyrics;
|
|
|
|
/// <summary>
|
|
/// LyricResponse model.
|
|
/// </summary>
|
|
public class LyricDto
|
|
{
|
|
/// <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; } = [];
|
|
}
|