Implemented upload and downloading in daemon, api server and frontend

This commit is contained in:
2025-03-04 14:49:32 +01:00
parent 43b04ff630
commit fbf7cb554b
7 changed files with 131 additions and 7 deletions

View File

@@ -0,0 +1,6 @@
namespace MoonlightServers.Shared.Http.Responses.Client.Servers.Files;
public class ServerFilesDownloadResponse
{
public string DownloadUrl { get; set; }
}