Files
DP44/DataPRO/Modules/TestSetups/Imports/TTS/Model/WorkFunctionThreadData.cs
2026-04-17 14:55:32 -04:00

17 lines
399 B
C#

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);
}
}
}