jellyfin/Jellyfin.Server/SocketSharp/HttpFile.cs

19 lines
379 B
C#
Raw Normal View History

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