mirror of
https://github.com/radzenhq/radzen-blazor.git
synced 2026-07-08 18:16:08 +00:00
16 lines
373 B
C#
16 lines
373 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Radzen;
|
|
|
|
/// <summary>
|
|
/// Supplies information about a <see cref="Radzen.Blazor.RadzenUpload.Change" /> event that is being raised.
|
|
/// </summary>
|
|
public class UploadChangeEventArgs
|
|
{
|
|
/// <summary>
|
|
/// Gets a collection of the selected files.
|
|
/// </summary>
|
|
public IEnumerable<FileInfo>? Files { get; set; }
|
|
}
|
|
|