Files
DP44/Common/DTS.CommonCore/.svn/pristine/f0/f0388c178ea9b08fb0a7aefae43c39d19f734268.svn-base
2026-04-17 14:55:32 -04:00

25 lines
860 B
Plaintext

using DTS.Common.Interface.TestSetups.Imports.TTS.ReadFile;
using Microsoft.Practices.Prism.Events;
namespace DTS.Common.Events
{
/// <summary>
/// The TTSImportReadFileStatusEvent event.
/// </summary>
///
/// <remarks>
/// 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.
/// </remarks>
///
public class TTSImportReadFileStatusEvent : CompositePresentationEvent<ReadFileStatusArg> { }
public class ReadFileStatusArg
{
public bool Status { get; set; }
public ITTSSetup TTSSetup { get; set; }
public string ErrorMessage { get; set; }
}
}