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

19 lines
589 B

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