added first version of m3u parser (only parse what we need)

This commit is contained in:
2018-12-07 23:30:48 +01:00
parent f1bd8a63fc
commit d36d91cfbc
4 changed files with 192 additions and 0 deletions

11
Parser/IPlaylistParser.cs Normal file
View File

@@ -0,0 +1,11 @@
using System.Collections.Generic;
using System.IO;
using System.Threading.Tasks;
namespace Tv7Playlist.Parser
{
public interface IPlaylistParser
{
Task<IReadOnlyCollection<ParsedTrack>> ParseFromStream(Stream stream);
}
}