Files
DP44/DataPRO/Modules/TestSetups/Imports/TTS/Model/WorkFunctionThreadData.cs

17 lines
399 B
C#
Raw Permalink Normal View History

2026-04-17 14:55:32 -04:00
using System.Threading;
namespace TTSImport.Model
{
public class WorkFunctionThreadData
{
public ManualResetEvent CancelEvent { get; }
public ManualResetEvent DoneEvent { get; }
public WorkFunctionThreadData()
{
CancelEvent = new ManualResetEvent(false);
DoneEvent = new ManualResetEvent(false);
}
}
}