aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Server/SocketSharp/HttpFile.cs
diff options
context:
space:
mode:
authorClaus Vium <clausvium@gmail.com>2019-02-26 20:22:40 +0100
committerClaus Vium <clausvium@gmail.com>2019-02-26 22:11:21 +0100
commit4e8de67acabbfe1aeb5fee6d1162abc760fbd540 (patch)
tree478975c6cf08ed9b5690296e50c3bf4fec9f4960 /Jellyfin.Server/SocketSharp/HttpFile.cs
parenta85488cd205532662c59ada5032dc81c0315543b (diff)
Remove SocketSharp from Jellyfin.Server and some other cleanup
Diffstat (limited to 'Jellyfin.Server/SocketSharp/HttpFile.cs')
-rw-r--r--Jellyfin.Server/SocketSharp/HttpFile.cs18
1 files changed, 0 insertions, 18 deletions
diff --git a/Jellyfin.Server/SocketSharp/HttpFile.cs b/Jellyfin.Server/SocketSharp/HttpFile.cs
deleted file mode 100644
index 448b666b6..000000000
--- a/Jellyfin.Server/SocketSharp/HttpFile.cs
+++ /dev/null
@@ -1,18 +0,0 @@
-using System.IO;
-using MediaBrowser.Model.Services;
-
-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; }
- }
-}