Implemented system files tab

This commit is contained in:
2025-02-06 10:56:49 +01:00
parent 2e5d0dcd73
commit 480d118014
8 changed files with 552 additions and 2 deletions

View File

@@ -0,0 +1,8 @@
namespace Moonlight.Shared.Http.Requests.Admin.Sys.Files;
public class DecompressRequest
{
public string Type { get; set; }
public string Path { get; set; }
public string Destination { get; set; }
}