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.
29 lines
775 B
29 lines
775 B
8 months ago
|
namespace MediaBrowser.Model.Lyrics;
|
||
1 year ago
|
|
||
|
/// <summary>
|
||
|
/// The information for a raw lyrics file before parsing.
|
||
|
/// </summary>
|
||
|
public class LyricFile
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Initializes a new instance of the <see cref="LyricFile"/> class.
|
||
|
/// </summary>
|
||
|
/// <param name="name">The name.</param>
|
||
1 year ago
|
/// <param name="content">The content, must not be empty.</param>
|
||
1 year ago
|
public LyricFile(string name, string content)
|
||
|
{
|
||
|
Name = name;
|
||
|
Content = content;
|
||
|
}
|
||
|
|
||
|
/// <summary>
|
||
|
/// Gets or sets the name of the lyrics file. This must include the file extension.
|
||
|
/// </summary>
|
||
|
public string Name { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// Gets or sets the contents of the file.
|
||
|
/// </summary>
|
||
|
public string Content { get; set; }
|
||
|
}
|