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

7 lines
124 B
C#

namespace SynchronousWithNewtonsoftJson.Model;
public interface ILyricsSource
{
IEnumerable<string> GetSongLyrics();
}