12 lines
228 B
C#
12 lines
228 B
C#
using System;
|
|
using System.IO;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MediaBrowser.ApiInteraction
|
|
{
|
|
public interface IHttpClient : IDisposable
|
|
{
|
|
Task<Stream> GetStreamAsync(string url);
|
|
}
|
|
}
|