Implemented system files tab
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
namespace Moonlight.Shared.Http.Requests.Admin.Sys.Files;
|
||||
|
||||
public class CompressRequest
|
||||
{
|
||||
public string Type { get; set; }
|
||||
public string Path { get; set; }
|
||||
public string[] ItemsToCompress { get; set; }
|
||||
}
|
||||
@@ -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; }
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
namespace Moonlight.Shared.Http.Responses.Admin.Sys.Files;
|
||||
|
||||
public class FileSystemEntryResponse
|
||||
{
|
||||
public string Name { get; set; }
|
||||
public bool IsFile { get; set; }
|
||||
public long Size { get; set; }
|
||||
|
||||
public DateTime CreatedAt { get; set; }
|
||||
public DateTime UpdatedAt { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user