Files
VDownload/VDownload.Sources/VDownload.Sources.Common/ISourceSearchService.cs

11 lines
236 B
C#
Raw Normal View History

using VDownload.Models;
namespace VDownload.Sources.Common
{
public interface ISourceSearchService
{
Task<Video> SearchVideo(string url);
Task<Playlist> SearchPlaylist(string url, int maxVideoCount);
}
}