mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-24 22:07:19 -05:00
10 lines
172 B
C#
10 lines
172 B
C#
using System.IO;
|
|
|
|
namespace MediaBrowser.Common.Net
|
|
{
|
|
public interface IHttpResultFactory
|
|
{
|
|
object GetResult(Stream stream, string contentType);
|
|
}
|
|
}
|