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