Sic.Framework/MECF.Framework.Common/Aitex/Core/Common/ProcessStatus.cs

13 lines
144 B
C#
Raw Normal View History

2023-04-13 11:51:03 +08:00
namespace Aitex.Core.Common
{
public enum ProcessStatus
{
Idle = 0,
Wait = 1,
Busy = 2,
Completed = 3,
Failed = 4,
Abort = 5
}
}