diff options
| author | Claus Vium <clausvium@gmail.com> | 2019-02-25 23:34:32 +0100 |
|---|---|---|
| committer | Claus Vium <clausvium@gmail.com> | 2019-02-26 22:11:21 +0100 |
| commit | 852460b99155e015ed5f1d7ad2fab0281bfdfbec (patch) | |
| tree | bedbe59bfef06ce6acf8c774622545c0dc7549a4 /Emby.Server.Implementations/SocketSharp/HttpFile.cs | |
| parent | 33b67a357fe73103f046b822d7cc66fc5318a9ef (diff) | |
kestrel init
Diffstat (limited to 'Emby.Server.Implementations/SocketSharp/HttpFile.cs')
| -rw-r--r-- | Emby.Server.Implementations/SocketSharp/HttpFile.cs | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Emby.Server.Implementations/SocketSharp/HttpFile.cs b/Emby.Server.Implementations/SocketSharp/HttpFile.cs new file mode 100644 index 000000000..120ac50d9 --- /dev/null +++ b/Emby.Server.Implementations/SocketSharp/HttpFile.cs @@ -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; } + } +} |
