aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Server/SocketSharp/HttpFile.cs
diff options
context:
space:
mode:
authorBond-009 <bond.009@outlook.com>2019-02-16 11:37:25 +0100
committerBond-009 <bond.009@outlook.com>2019-02-16 11:46:58 +0100
commitfb6a901374e062297dd1d95fef9b34766f66d4a6 (patch)
tree8b02b8e7644929f64bcd26a6befda570aa45622b /Jellyfin.Server/SocketSharp/HttpFile.cs
parent25c2267a89af5c2e82774c638cdad0defcc894b5 (diff)
Separate HttpPostedFile
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; }
}
}