mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-06-23 15:30:56 -04: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);
|
|
}
|
|
}
|