mirror of
https://github.com/unclshura/BlazorOpenApi.git
synced 2025-12-21 09:51:53 +00:00
19 lines
426 B
Plaintext
19 lines
426 B
Plaintext
@if (Value != null)
|
|
{
|
|
<div class="request">
|
|
<div class="rb-title">Request body</div>
|
|
<div class="rb-body">
|
|
<MarkdownControl Value="@Value.Description" />
|
|
@foreach ( var media in Value.Content)
|
|
{
|
|
<MediaTypeControl Key="@media.Key" Value="@media.Value" />
|
|
}
|
|
</div>
|
|
</div>
|
|
}
|
|
|
|
@code {
|
|
[Parameter]
|
|
public OpenApiRequestBody? Value { get; set; }
|
|
}
|