Libation/FileLiberator/UNTESTED/IDownloadable.cs
2019-11-05 13:42:11 -05:00

12 lines
302 B
C#

using System;
namespace FileLiberator
{
public interface IDownloadable : IProcessable
{
event EventHandler<string> DownloadBegin;
event EventHandler<Dinah.Core.Net.Http.DownloadProgress> DownloadProgressChanged;
event EventHandler<string> DownloadCompleted;
}
}