AspNetCore.Docs.Samples/fundamentals/streaming/AsynchronousWithSystemTextJson/Model/ILyricsSource.cs

7 lines
130 B
C#

namespace AsynchronousWithSystemTextJson.Model;
public interface ILyricsSource
{
IAsyncEnumerable<string> GetSongLyrics();
}