mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-04-05 17:37:51 +08:00
17 lines
553 B
C#
17 lines
553 B
C#
// Copyright (c) Microsoft Corporation.
|
|
// Licensed under the MIT license.
|
|
|
|
namespace CPF.Razor
|
|
{
|
|
/// <summary>
|
|
/// Marker interface to indicate that this element is a container of elements that are not
|
|
/// true children of their parent. For example, a host for elements that go in a modal dialog
|
|
/// are not true children of their parent.
|
|
/// </summary>
|
|
#pragma warning disable CA1040 // Avoid empty interfaces
|
|
public interface INonChildContainerElement
|
|
#pragma warning restore CA1040 // Avoid empty interfaces
|
|
{
|
|
}
|
|
}
|