mirror of
https://github.com/oqtane/oqtane.framework.git
synced 2025-05-25 14:23:10 +00:00
12 lines
236 B
C#
12 lines
236 B
C#
using Oqtane.Models;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Oqtane.Infrastructure
|
|
{
|
|
public interface IHostResources
|
|
{
|
|
List<Resource> Resources { get; } // identifies global resources for an application
|
|
}
|
|
}
|
|
|