jellyfin/Jellyfin.Server/SocketSharp/HttpFile.cs

15 lines
371 B
C#
Raw Normal View History

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