using System; using FSI.Lib.Tools.RoboSharp.Results; using FSI.Lib.Tools.RoboSharp.Interfaces; namespace FSI.Lib.Tools.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; } } }