jellyfin-server/Jellyfin.Server/SocketSharp/HttpFile.cs

15 lines
371 B
C#
Raw Normal View History

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