18 lines
673 B
Plaintext
18 lines
673 B
Plaintext
@using Entities.DTO
|
|
@using TechHelper.Client.Exam
|
|
|
|
|
|
<MudPaper>
|
|
<MudText>@Question.Id</MudText>
|
|
<MudTextField @bind-Value="Question.Title" Label="Title" Variant="Variant.Outlined" Margin="Margin.Dense" AutoGrow="true" />
|
|
<MudTextField @bind-Value="Question.Answer" Label="Answer" Variant="Variant.Outlined" Adornment="Adornment.End" AdornmentText="." Margin="Margin.Dense" AutoGrow="true" />
|
|
<MudTextField @bind-Value="Question.Options" Label="Options" Variant="Variant.Outlined" Adornment="Adornment.End" AdornmentText="." Margin="Margin.Dense" AutoGrow="true" />
|
|
|
|
</MudPaper>
|
|
|
|
|
|
@code {
|
|
[Parameter]
|
|
public QuestionDto Question { get; set; } = new QuestionDto();
|
|
}
|