mirror of
https://github.com/gwdevhub/Daybreak.git
synced 2026-07-22 18:49:44 +00:00
10 lines
188 B
C#
10 lines
188 B
C#
namespace Daybreak.API.Models;
|
|
|
|
public interface IWorkItem
|
|
{
|
|
CancellationToken CancellationToken { get; }
|
|
void Execute();
|
|
void Cancel();
|
|
void Exception(Exception ex);
|
|
}
|