using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.ComponentModel; using RoboSharp.Results; namespace RoboSharp.Interfaces { /// /// Provide Read-Only access to a SpeedStatistic /// /// /// /// public interface ISpeedStatistic : INotifyPropertyChanged, ICloneable { /// Average Transfer Rate in Bytes/Second decimal BytesPerSec { get; } /// Average Transfer Rate in MB/Minute decimal MegaBytesPerMin { get; } /// string ToString(); /// new object /// new SpeedStatistic Clone(); } }