Sicherung

This commit is contained in:
Maier Stephan SI
2023-01-02 04:33:49 +01:00
parent bea46135fd
commit d01747f75a
284 changed files with 6106 additions and 65112 deletions

View File

@@ -0,0 +1,25 @@
using System;
using System.Security.Cryptography.X509Certificates;
using RoboSharp.EventArgObjects;
// Do Not change NameSpace here! -> Must be RoboSharp due to prior releases
namespace RoboSharp
{
/// <summary>
/// <inheritdoc cref="Results.RoboCopyResults"/>
/// </summary>
public class RoboCommandCompletedEventArgs : TimeSpanEventArgs
{
/// <summary>
/// Return the Results object
/// </summary>
/// <param name="results"></param>
internal RoboCommandCompletedEventArgs(Results.RoboCopyResults results) : base(results.StartTime, results.EndTime, results.TimeSpan)
{
this.Results = results;
}
/// <inheritdoc cref="Results.RoboCopyResults"/>
public Results.RoboCopyResults Results { get; }
}
}