mirror of
https://github.com/radzenhq/radzen-blazor.git
synced 2026-07-08 18:16:08 +00:00
19 lines
424 B
C#
19 lines
424 B
C#
using Microsoft.AspNetCore.Components;
|
|
using Radzen.Blazor;
|
|
|
|
namespace Radzen;
|
|
|
|
/// <summary>
|
|
/// A base class of components that have child content.
|
|
/// </summary>
|
|
public class RadzenComponentWithChildren : RadzenComponent
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the child content
|
|
/// </summary>
|
|
/// <value>The content of the child.</value>
|
|
[Parameter]
|
|
public RenderFragment? ChildContent { get; set; }
|
|
}
|
|
|