Created
October 19, 2020 20:38
-
-
Save zHaytam/b11637265c9fa121a53fce99215ddbf5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="table-responsive"> | |
<table class="table"> | |
<thead> | |
<tr> | |
<th>Name</th> | |
<th>Type</th> | |
<th>Default</th> | |
<th>Description</th> | |
</tr> | |
</thead> | |
<tbody> | |
@foreach (var possibleOption in ReflectionUtils.ExtractPossibleOptions<DiagramOptions>()) | |
{ | |
<tr> | |
<th>@possibleOption.Name</th> | |
<td>@possibleOption.Type</td> | |
<td>@possibleOption.Default</td> | |
<td>@possibleOption.Description</td> | |
</tr> | |
} | |
</tbody> | |
</table> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment