Rename and rework entry point

This commit is contained in:
Bond_009
2019-01-01 16:27:11 +01:00
committed by Vasily
parent e094c45abb
commit 75efe9cf0a
25 changed files with 461 additions and 756 deletions

View File

@@ -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; }
}
}