mirror of
https://github.com/radzenhq/radzen-blazor.git
synced 2026-02-04 05:35:44 +00:00
16 lines
384 B
C#
16 lines
384 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Radzen;
|
|
|
|
/// <summary>
|
|
/// Supplies information about a <see cref="Radzen.Blazor.RadzenTemplateForm{TItem}.InvalidSubmit" /> event that is being raised.
|
|
/// </summary>
|
|
public class FormInvalidSubmitEventArgs
|
|
{
|
|
/// <summary>
|
|
/// Gets the validation errors.
|
|
/// </summary>
|
|
public IEnumerable<string>? Errors { get; set; }
|
|
}
|
|
|