2019-01-13 21:01:16 +01:00
|
|
|
using System.IO;
|
2019-01-01 16:27:11 +01:00
|
|
|
using MediaBrowser.Model.Services;
|
2018-09-12 19:26:21 +02:00
|
|
|
|
2019-02-09 10:10:33 +01:00
|
|
|
namespace Jellyfin.Server.SocketSharp
|
2018-09-12 19:26:21 +02:00
|
|
|
{
|
|
|
|
|
public class HttpFile : IHttpFile
|
|
|
|
|
{
|
|
|
|
|
public string Name { get; set; }
|
2019-02-16 11:37:25 +01:00
|
|
|
|
2018-09-12 19:26:21 +02:00
|
|
|
public string FileName { get; set; }
|
2019-02-16 11:37:25 +01:00
|
|
|
|
2018-09-12 19:26:21 +02:00
|
|
|
public long ContentLength { get; set; }
|
2019-02-16 11:37:25 +01:00
|
|
|
|
2018-09-12 19:26:21 +02:00
|
|
|
public string ContentType { get; set; }
|
2019-02-16 11:37:25 +01:00
|
|
|
|
2018-09-12 19:26:21 +02:00
|
|
|
public Stream InputStream { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|