mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-19 11:59:02 -07: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; }
|
|||
|
}
|
|||
|
}
|