using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.ComponentModel;
using RoboSharp.Results;
namespace 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; }
}
}