aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Server/SocketSharp/HttpFile.cs
blob: 89c75e536c7ee557537b0945dd5e07976c6d36c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using System.IO;
using MediaBrowser.Model.Services;

namespace Jellyfin.Server.SocketSharp
{
    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; }
    }
}