jellyfin/Jellyfin.Server/SocketSharp/HttpFile.cs

15 lines
371 B
C#
Raw Normal View History

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