Libation/DomainServices/UNTESTED/IDownloadable.cs
2019-10-04 16:14:04 -04:00

13 lines
306 B
C#

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