11 lines
248 B
C#
11 lines
248 B
C#
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Tv7Playlist.Core.Parsers
|
|
{
|
|
public interface IPlaylistParser
|
|
{
|
|
Task<IReadOnlyCollection<ParsedTrack>> ParseFromStream(Stream stream);
|
|
}
|
|
} |