namespace MediaBrowser.Model.Lyrics;
/// 
/// The information for a raw lyrics file before parsing.
/// 
public class LyricFile
{
    /// 
    /// Initializes a new instance of the  class.
    /// 
    /// The name.
    /// The content, must not be empty.
    public LyricFile(string name, string content)
    {
        Name = name;
        Content = content;
    }
    /// 
    /// Gets or sets the name of the lyrics file. This must include the file extension.
    /// 
    public string Name { get; set; }
    /// 
    /// Gets or sets the contents of the file.
    /// 
    public string Content { get; set; }
}