mirror of
https://github.com/chylex/TweetDuck.git
synced 2025-06-05 14:34:03 +02:00
9 lines
219 B
C#
9 lines
219 B
C#
using System;
|
|
|
|
namespace TweetLib.Browser.Interfaces {
|
|
public interface IFileDownloader {
|
|
string CacheFolder { get; }
|
|
void DownloadFile(string url, string path, Action? onSuccess, Action<Exception>? onError);
|
|
}
|
|
}
|