using DTS.Common.Interface.TestSetups.Imports.TTS.ReadFile;
using Microsoft.Practices.Prism.Events;
namespace DTS.Common.Events
{
///
/// The TTSImportReadFileStatusEvent event.
///
///
///
/// This event is used to determine the success/failure of reading a file.
/// If Status is True, the read was successful and TTSSetup contains the Test Setup that was read.
/// If Status is False, the read was not successful, and ErrorMessage contains the reason.
///
///
public class TTSImportReadFileStatusEvent : CompositePresentationEvent { }
public class ReadFileStatusArg
{
public bool Status { get; set; }
public ITTSSetup TTSSetup { get; set; }
public string ErrorMessage { get; set; }
}
}