namespace MudBlazor; public sealed class MudMarkdownStyling { public TableStyling Table { get; } = new(); public sealed class TableStyling { /// /// If true, striped table rows will be used. /// public bool IsStriped { get; set; } = true; /// /// If true, table's cells will have left/right borders. /// public bool IsBordered { get; set; } = true; /// /// Child content of component. /// public int Elevation { set; get; } = 1; } }