1
0
mirror of https://github.com/chylex/Minecraft-Phantom-Panel.git synced 2024-11-24 22:42:53 +01:00
Minecraft-Phantom-Panel/Server/Phantom.Server.Web.Components/Forms/FormValidationMessage.razor

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; }
}