using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace RoboSharp.Interfaces { /// /// Interface for the object.
/// Implements ///
public interface IRoboQueueResults : IRoboCopyResultsList { /// /// Local time the command started. /// DateTime StartTime { get; } /// /// Local time the command stopped. /// DateTime EndTime { get; } /// /// Length of time the process took to run /// TimeSpan TimeSpan { get; } } }