Libation/FileLiberator/UNTESTED/IDownloadable.cs
2019-12-27 22:08:43 -05:00

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