mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-17 14:33:06 +03:00
15 lines
373 B
C#
15 lines
373 B
C#
|
|
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; }
|
|||
|
|
}
|
|||
|
|
}
|