mirror of
https://github.com/rmcrackan/Libation.git
synced 2026-01-17 02:08:15 -05:00
14 lines
350 B
C#
14 lines
350 B
C#
using System;
|
|
using Dinah.Core.Net.Http;
|
|
|
|
namespace FileLiberator
|
|
{
|
|
public interface IStreamable
|
|
{
|
|
event EventHandler<string> StreamingBegin;
|
|
event EventHandler<DownloadProgress> StreamingProgressChanged;
|
|
event EventHandler<TimeSpan> StreamingTimeRemaining;
|
|
event EventHandler<string> StreamingCompleted;
|
|
}
|
|
}
|