add RenderMode to IModuleControl

This commit is contained in:
sbwalker
2024-02-01 09:59:28 -05:00
parent 156d39490e
commit abd235f332
6 changed files with 12 additions and 2 deletions

View File

@ -30,5 +30,10 @@ namespace Oqtane.Modules
/// Identifies all resources in a module
/// </summary>
List<Resource> Resources { get; }
/// <summary>
/// Specifies the required render mode for the module control ie. Static,Interactive
/// </summary>
string RenderMode { get; }
}
}