kestrel init

This commit is contained in:
Claus Vium
2019-02-25 23:34:32 +01:00
parent 33b67a357f
commit 852460b991
14 changed files with 2242 additions and 5 deletions

View File

@@ -0,0 +1,18 @@
using System.IO;
using MediaBrowser.Model.Services;
namespace Emby.Server.Implementations.SocketSharp
{
public class HttpFile : IHttpFile
{
public string Name { get; set; }
public string FileName { get; set; }
public long ContentLength { get; set; }
public string ContentType { get; set; }
public Stream InputStream { get; set; }
}
}