using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.ComponentModel; using FSI.Lib.Tools.RoboSharp.Results; namespace FSI.Lib.Tools.RoboSharp.Interfaces { /// /// Read-Only interface for /// /// /// /// public interface IRoboCopyCombinedExitStatus : INotifyPropertyChanged, ICloneable { /// bool WasCancelled { get; } /// bool AnyNoCopyNoError { get; } /// bool AnyWasCancelled { get; } /// bool AllSuccessful { get; } /// bool AllSuccessful_WithWarnings { get; } } }