using System; using System.Security.Cryptography.X509Certificates; using FSI.Lib.Tools.RoboSharp.EventArgObjects; // Do Not change NameSpace here! -> Must be RoboSharp due to prior releases namespace FSI.Lib.Tools.RoboSharp { /// /// /// public class RoboCommandCompletedEventArgs : TimeSpanEventArgs { /// /// Return the Results object /// /// internal RoboCommandCompletedEventArgs(Results.RoboCopyResults results) : base(results.StartTime, results.EndTime, results.TimeSpan) { this.Results = results; } /// public Results.RoboCopyResults Results { get; } } }