mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-21 00:05:26 +03:00
Rename and rework entry point
This commit is contained in:
14
Jellyfin.Server/SocketSharp/HttpFile.cs
Normal file
14
Jellyfin.Server/SocketSharp/HttpFile.cs
Normal 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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user