Added AssetService. Added command line handling for assets. Added asset streaming on the client

This commit is contained in:
2024-12-01 18:34:08 +01:00
parent 2e98d166ec
commit 0a76e64d2f
5 changed files with 134 additions and 1 deletions

View File

@@ -0,0 +1,7 @@
namespace Moonlight.Shared.Http.Responses.Assets;
public class FrontendAssetResponse
{
public string[] CssFiles { get; set; }
public string[] JavascriptFiles { get; set; }
}