2019-10-21 13:01:38 -04:00

13 lines
314 B
C#

using System;
using System.Net;
namespace ScrapingDomainServices
{
public interface IDownloadable : IProcessable
{
event EventHandler<string> DownloadBegin;
event DownloadProgressChangedEventHandler DownloadProgressChanged;
event EventHandler<string> DownloadCompleted;
}
}