Implemented zip and tar compressing and decompressing. Implemented chunked file uploading
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
using MoonlightServers.DaemonShared.Enums;
|
||||
|
||||
namespace MoonlightServers.DaemonShared.DaemonSide.Http.Requests;
|
||||
|
||||
public class ServerFilesCompressRequest
|
||||
{
|
||||
public string Destination { get; set; }
|
||||
public string[] Items { get; set; }
|
||||
public CompressType Type { get; set; }
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
using MoonlightServers.DaemonShared.Enums;
|
||||
|
||||
namespace MoonlightServers.DaemonShared.DaemonSide.Http.Requests;
|
||||
|
||||
public class ServerFilesDecompressRequest
|
||||
{
|
||||
public string Destination { get; set; }
|
||||
public string Path { get; set; }
|
||||
public CompressType Type { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user