Files
Servers/MoonlightServers.DaemonShared/DaemonSide/Http/Requests/ServerFilesCompressRequest.cs

10 lines
281 B
C#

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; }
}