Create IStandalonePage.cs

This commit is contained in:
CortexCore 2024-07-13 10:10:29 +08:00
parent c0ded1f99b
commit 0f306a1abc
1 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,11 @@
namespace BITKit.Blazor
{
/// <summary>
/// 独立窗口, 继承该接口的Razor Page将不会走Layout布局,将全屏显示
/// </summary>
public interface IStandalonePage
{
}
}