IWorkerContext.cs 180 B

12345678910
  1. using System.Threading;
  2. namespace Quadarax.Foundation.Core.Thread
  3. {
  4. public interface IWorkerContext
  5. {
  6. CancellationToken Cancel { get; set; }
  7. }
  8. }