Separate HttpPostedFile

This commit is contained in:
Bond-009
2019-02-16 11:37:25 +01:00
parent 25c2267a89
commit fb6a901374
4 changed files with 248 additions and 248 deletions

View File

@@ -6,9 +6,13 @@ 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; }
}
}