17 lines
399 B
C#
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);
|
|
}
|
|
}
|
|
}
|