mirror of
https://github.com/rmcrackan/Libation.git
synced 2026-01-28 15:51:07 -05:00
13 lines
295 B
C#
13 lines
295 B
C#
using System;
|
|
using Dinah.Core.Net.Http;
|
|
|
|
namespace FileLiberator
|
|
{
|
|
public interface IDownloadable
|
|
{
|
|
event EventHandler<string> DownloadBegin;
|
|
event EventHandler<DownloadProgress> DownloadProgressChanged;
|
|
event EventHandler<string> DownloadCompleted;
|
|
}
|
|
}
|