namespace VideoBrowser.Core
{
using System;
using System.Windows.Controls;
///
/// Defines the
///
public class OperationEventArgs : EventArgs
{
#region Constructors
///
/// Initializes a new instance of the class.
///
/// The item
/// The status
public OperationEventArgs(ListViewItem item, OperationStatus status)
{
this.Item = item;
this.Status = status;
}
#endregion Constructors
#region Properties
///
/// Gets or sets the Item
///
public ListViewItem Item { get; set; }
///
/// Gets or sets the Status
///
public OperationStatus Status { get; set; }
#endregion Properties
}
}