10 lines
174 B
C#
10 lines
174 B
C#
using System.IO;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Tv7Playlist.Core
|
|
{
|
|
public interface IPlaylistBuilder
|
|
{
|
|
Task<Stream> GeneratePlaylistAsync();
|
|
}
|
|
} |