2019-11-04 14:16:57 -05:00

12 lines
311 B
C#

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