mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-08-04 15:28:23 +00:00
kestrel init
This commit is contained in:
parent
33b67a357f
commit
852460b991
14 changed files with 2242 additions and 5 deletions
18
Emby.Server.Implementations/SocketSharp/HttpFile.cs
Normal file
18
Emby.Server.Implementations/SocketSharp/HttpFile.cs
Normal 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; }
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue