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