7 lines
124 B
C#
7 lines
124 B
C#
|
namespace SynchronousWithNewtonsoftJson.Model;
|
||
|
|
||
|
public interface ILyricsSource
|
||
|
{
|
||
|
IEnumerable<string> GetSongLyrics();
|
||
|
}
|