6 |
@Title
7 |
@Description
8 | @if (string.IsNullOrEmpty(Code) == false)
9 | {
10 |
13 | }
14 |
15 |
16 | @code {
17 | [Parameter]
18 | public string? Title { get; set; }
19 |
20 | [Parameter]
21 | public string? Description { get; set; }
22 |
23 | [Parameter]
24 | public string? Code { get; set; }
25 | }
26 |
--------------------------------------------------------------------------------
/BCSSViewer.Docs/Components/PageBottomRouting.razor:
--------------------------------------------------------------------------------
1 | @namespace BCSSViewer.Docs
2 | @inject BcssService Bc
3 |
4 |