You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
downkyi/DownKyi/Services/Download/IDownloadService.cs

20 lines
637 B

using DownKyi.Models;
using System.Collections.Generic;
namespace DownKyi.Services.Download
{
public interface IDownloadService
{
void Parse(DownloadingItem downloading);
string DownloadAudio(DownloadingItem downloading);
string DownloadVideo(DownloadingItem downloading);
string DownloadDanmaku(DownloadingItem downloading);
List<string> DownloadSubtitle(DownloadingItem downloading);
string DownloadCover(DownloadingItem downloading);
string MixedFlow(DownloadingItem downloading, string audioUid, string videoUid);
void Start();
void End();
}
}