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