Files
jellyfin/MediaBrowser.ApiInteraction/IHttpClient.cs
2012-08-15 09:20:29 -04:00

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);
}
}