init
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
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);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user