aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Server/SocketSharp/HttpFile.cs
blob: 77ce035109bd8b5f15d86c722a6fa39702e9df74 (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; }
    }
}