mirror of
https://github.com/LANCommander/BlazorMarkdownEditor.git
synced 2026-08-30 08:23:04 -04:00
22 lines
No EOL
657 B
C#
22 lines
No EOL
657 B
C#
namespace PSC.Blazor.Components.MarkdownEditor.EventsArgs
|
|
{
|
|
/// <summary>
|
|
/// Provides the information about the file started to be uploaded.
|
|
/// </summary>
|
|
public class FileStartedEventArgs : EventArgs
|
|
{
|
|
/// <summary>
|
|
/// A default <see cref="FileStartedEventArgs"/> constructor.
|
|
/// </summary>
|
|
/// <param name="file">File that is started with upload.</param>
|
|
public FileStartedEventArgs(FileEntry file)
|
|
{
|
|
File = file;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets the file currently being uploaded.
|
|
/// </summary>
|
|
public FileEntry File { get; }
|
|
}
|
|
} |