diff --git a/Oqtane.Server/Infrastructure/Interfaces/IHostResources.cs b/Oqtane.Server/Infrastructure/Interfaces/IHostResources.cs index f22c53f0..1abb0845 100644 --- a/Oqtane.Server/Infrastructure/Interfaces/IHostResources.cs +++ b/Oqtane.Server/Infrastructure/Interfaces/IHostResources.cs @@ -1,11 +1,12 @@ using Oqtane.Models; +using System; using System.Collections.Generic; namespace Oqtane.Infrastructure { - // this interface is for declaring global resources and is useful for scenarios where you want to declare resources in a single location for the entire application public interface IHostResources { + [Obsolete("IHostResources is deprecated. Use module or theme scoped Resources in conjunction with ResourceLevel.Site instead.", false)] List Resources { get; } // identifies global resources for an application } }