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