namespace PatcherUtils
{
///
/// delegate
///
/// The object calling the handler
/// The current number of items processed
/// The total number of items
/// The percentage of items processed
/// An optional message to display above the progress bar
/// Additional information to display below the progress bar.
public delegate void ProgressChangedHandler(object Sender, int Progress, int Total, int Percent, string Message = "", params LineItem[] AdditionalLineItems);
}