15 lines
191 B
C#
15 lines
191 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Aga.Controls.Threading
|
|
{
|
|
public enum WorkItemStatus
|
|
{
|
|
Completed,
|
|
Queued,
|
|
Executing,
|
|
Aborted
|
|
}
|
|
}
|