namespace VideoBrowser.Core { using System; /// /// Defines the /// public class FileDownloadEventArgs : EventArgs { #region Constructors /// /// Initializes a new instance of the class. /// /// The fileDownload public FileDownloadEventArgs(FileDownload fileDownload) => this.FileDownload = fileDownload; #endregion Constructors #region Properties /// /// Gets the FileDownload /// public FileDownload FileDownload { get; private set; } #endregion Properties } }