mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-02-06 00:49:07 +00:00
25 lines
627 B
C#
25 lines
627 B
C#
|
namespace MudBlazor;
|
|||
|
|
|||
|
public sealed class MudMarkdownStyling
|
|||
|
{
|
|||
|
public TableStyling Table { get; } = new();
|
|||
|
|
|||
|
public sealed class TableStyling
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// If true, striped table rows will be used.
|
|||
|
/// </summary>
|
|||
|
public bool IsStriped { get; set; } = true;
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// If true, table's cells will have left/right borders.
|
|||
|
/// </summary>
|
|||
|
public bool IsBordered { get; set; } = true;
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Child content of component.
|
|||
|
/// </summary>
|
|||
|
public int Elevation { set; get; } = 1;
|
|||
|
}
|
|||
|
}
|