diff options
| author | Bond_009 <bond.009@outlook.com> | 2019-01-01 16:27:11 +0100 |
|---|---|---|
| committer | Vasily <JustAMan@users.noreply.github.com> | 2019-01-02 02:30:59 +0300 |
| commit | 75efe9cf0a15b6871726a4c2e8802e2af88cf1d1 (patch) | |
| tree | bba4635541b86bf87fd8e2bd7825fbc44a02f0d6 /Jellyfin.Server/SocketSharp/HttpFile.cs | |
| parent | e094c45abb44ece2bf685087ca6326cb00c468a8 (diff) | |
Rename and rework entry point
Diffstat (limited to 'Jellyfin.Server/SocketSharp/HttpFile.cs')
| -rw-r--r-- | Jellyfin.Server/SocketSharp/HttpFile.cs | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Jellyfin.Server/SocketSharp/HttpFile.cs b/Jellyfin.Server/SocketSharp/HttpFile.cs new file mode 100644 index 000000000..4a798062d --- /dev/null +++ b/Jellyfin.Server/SocketSharp/HttpFile.cs @@ -0,0 +1,14 @@ +using System.IO; +using MediaBrowser.Model.Services; + +namespace Jellyfin.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; } + } +} |
