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

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