mirror of
https://github.com/radzenhq/radzen-blazor.git
synced 2026-02-04 05:35:44 +00:00
18 lines
362 B
C#
18 lines
362 B
C#
using System;
|
|
|
|
namespace Radzen.Blazor.Markdown;
|
|
|
|
/// <summary>
|
|
/// Represents a table header row in a Markdown table.
|
|
/// </summary>
|
|
public class TableHeaderRow : TableRow
|
|
{
|
|
/// <inheritdoc />
|
|
public override void Accept(INodeVisitor visitor)
|
|
{
|
|
ArgumentNullException.ThrowIfNull(visitor);
|
|
visitor.VisitTableHeaderRow(this);
|
|
}
|
|
}
|
|
|