aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/SocketSharp/HttpFile.cs
diff options
context:
space:
mode:
authorBond-009 <bond.009@outlook.com>2019-03-12 16:37:18 +0100
committerGitHub <noreply@github.com>2019-03-12 16:37:18 +0100
commit3ddbda9aca3be9bf24a1c0c1f0052e5d9e35b7d8 (patch)
treecd92d645dea415bd148c344afccbdaa62316866f /Emby.Server.Implementations/SocketSharp/HttpFile.cs
parentffd6dac03a94bb99387e84b447aa22ca92cf9465 (diff)
parent1fef8bf266480dc41cdf7ab80d1deac54dedad3d (diff)
Merge branch 'master' into xml
Diffstat (limited to 'Emby.Server.Implementations/SocketSharp/HttpFile.cs')
-rw-r--r--Emby.Server.Implementations/SocketSharp/HttpFile.cs18
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; }
+ }
+}