aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Server/SocketSharp/HttpFile.cs
diff options
context:
space:
mode:
authorVasily <JustAMan@users.noreply.github.com>2019-02-20 13:33:42 +0300
committerGitHub <noreply@github.com>2019-02-20 13:33:42 +0300
commit74695428fe91f609edf063e98eb621d140b3a8f9 (patch)
tree9de95f29959b024d2c52c8ee5d19f8a1c77fa708 /Jellyfin.Server/SocketSharp/HttpFile.cs
parent6c6e9ca9f22d4c4bd1175d4abae846d09d2f074d (diff)
parentfb6a901374e062297dd1d95fef9b34766f66d4a6 (diff)
Merge pull request #914 from Bond-009/httppostedfile
Separate HttpPostedFile into it's own file
Diffstat (limited to 'Jellyfin.Server/SocketSharp/HttpFile.cs')
-rw-r--r--Jellyfin.Server/SocketSharp/HttpFile.cs4
1 files changed, 4 insertions, 0 deletions
diff --git a/Jellyfin.Server/SocketSharp/HttpFile.cs b/Jellyfin.Server/SocketSharp/HttpFile.cs
index 89c75e536..448b666b6 100644
--- a/Jellyfin.Server/SocketSharp/HttpFile.cs
+++ b/Jellyfin.Server/SocketSharp/HttpFile.cs
@@ -6,9 +6,13 @@ namespace Jellyfin.Server.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; }
}
}