20 lines
506 B
Plaintext
20 lines
506 B
Plaintext
<TextInput Placeholder="Titre du critère" @bind-Value=@Title />
|
|
|
|
<InputTextArea Placeholder="Description" @bind-Value=@Description />
|
|
|
|
<InputTextArea Placeholder="Référence" @bind-Value=@Reference />
|
|
|
|
|
|
|
|
@code {
|
|
[Parameter]
|
|
public TemplateGrid Grid { get; set; } = default!;
|
|
|
|
[Parameter]
|
|
public Item Item { get; set; } = default!;
|
|
|
|
string Title { get; set; } = string.Empty;
|
|
string Description { get; set; } = string.Empty;
|
|
string Reference { get; set; } = string.Empty;
|
|
}
|