jellyfin/Jellyfin.Server/SocketSharp/HttpFile.cs

15 lines
368 B
C#
Raw Normal View History

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