mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-02-12 22:34:12 -05:00
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);
|
|
}
|
|
}
|