7 lines
130 B
C#
7 lines
130 B
C#
|
namespace AsynchronousWithSystemTextJson.Model;
|
||
|
|
||
|
public interface ILyricsSource
|
||
|
{
|
||
|
IAsyncEnumerable<string> GetSongLyrics();
|
||
|
}
|