moved to subfolder

This commit is contained in:
2018-12-09 23:24:53 +01:00
parent fd86f3e9c7
commit 02aad5f41d
25 changed files with 0 additions and 0 deletions

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);
}
}