mirror of
https://github.com/chylex/Minecraft-Phantom-Panel.git
synced 2024-11-23 19:42:51 +01:00
12 lines
199 B
Plaintext
12 lines
199 B
Plaintext
@using System.Linq.Expressions
|
|
@typeparam TValue
|
|
|
|
<ValidationMessage For="@For" class="invalid-feedback d-block" />
|
|
|
|
@code {
|
|
|
|
[Parameter]
|
|
public Expression<Func<TValue>>? For { get; set; }
|
|
|
|
}
|