mirror of
https://github.com/radzenhq/radzen-blazor.git
synced 2026-02-04 05:35:44 +00:00
14 lines
328 B
C#
14 lines
328 B
C#
namespace Radzen;
|
|
|
|
/// <summary>
|
|
/// Supplies information about a <see cref="Radzen.Blazor.RadzenUpload.Error" /> event that is being raised.
|
|
/// </summary>
|
|
public class UploadErrorEventArgs
|
|
{
|
|
/// <summary>
|
|
/// Gets a message telling what caused the error.
|
|
/// </summary>
|
|
public string? Message { get; set; }
|
|
}
|
|
|