using System;
using RoboSharp.Results;
using RoboSharp.Interfaces;
namespace RoboSharp.EventArgObjects
{
/// EventArgs for the delegate
public class ResultListUpdatedEventArgs : EventArgs
{
private ResultListUpdatedEventArgs() { }
/// Create the EventArgs for the delegate
/// Results list to present as an interface
public ResultListUpdatedEventArgs(IRoboCopyResultsList list)
{
ResultsList = list;
}
///
/// Read-Only interface to the List that has been updated.
///
public IRoboCopyResultsList ResultsList { get; }
}
}