using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace RoboSharp.Interfaces { /// /// Interface to normalize all the Start/End/TimeSpan properties of various objects /// internal interface ITimeSpan { /// /// 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; } } }