IWebResourceManager.cs 253 B

123456789101112
  1. using Microsoft.AspNetCore.Mvc.Razor;
  2. namespace VberAdmin.Resources;
  3. public interface IWebResourceManager
  4. {
  5. void AddScript(string url, bool addMinifiedOnProd = true);
  6. IReadOnlyList<string> GetScripts();
  7. HelperResult RenderScripts();
  8. }