using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading; using System.Threading.Tasks; namespace Bro.Common.Model { public class AutoWaitConfirm { public AutoResetEvent WaitHandle { get; set; } public bool WaitResult { get; set; } } public class ManualWaitConfirm { public ManualResetEvent WaitHandle { get; set; } public bool WaitResult { get; set; } } }