added support for dynamic inclusion of global resources in _host.cshtml ( ie. global stylesheets and scripts such as those required by UI component suites )

This commit is contained in:
Shaun Walker
2020-08-28 11:24:43 -04:00
parent 4aa0b83807
commit a8cd84e798
3 changed files with 75 additions and 0 deletions

View File

@ -0,0 +1,11 @@
using Oqtane.Models;
using System.Collections.Generic;
namespace Oqtane.Infrastructure
{
public interface IHostResources
{
List<Resource> Resources { get; } // identifies global resources for an application
}
}