7 lines
147 B
C#

namespace ZonyLrcTools.Common.Lyrics
{
public interface ILyricTextResolver
{
LyricItemCollection Resolve(string lyricText);
}
}