mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-18 15:03:06 +03:00
Update to 3.5.2 and .net core 2.1
This commit is contained in:
14
MediaBrowser.Server.Mono/SocketSharp/HttpFile.cs
Normal file
14
MediaBrowser.Server.Mono/SocketSharp/HttpFile.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
using MediaBrowser.Model.Services;
|
||||
using System.IO;
|
||||
|
||||
namespace EmbyServer.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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user