Sicherung gnaz neu

This commit is contained in:
Maier Stephan SI
2023-02-15 00:55:50 +01:00
parent 56c25672f9
commit f3f89b94f5
1348 changed files with 113234 additions and 98368 deletions

View File

@@ -1,25 +0,0 @@
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; }
}
}