1
0
mirror of https://github.com/chylex/TweetDuck.git synced 2025-06-05 14:34:03 +02:00
TweetDuck/lib/TweetLib.Browser/Interfaces/IFileDownloader.cs

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