Files
jellyfin-jellyfin-1/Jellyfin.Server/SocketSharp/HttpFile.cs

19 lines
379 B
C#
Raw Normal View History

using System.IO;
2019-01-01 16:27:11 +01:00
using MediaBrowser.Model.Services;
2018-09-12 19:26:21 +02: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; }
}
}