12 lines
311 B
C#
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;
|
|
}
|
|
}
|