17 lines
232 B
C#
17 lines
232 B
C#
|
|
using System;
|
|||
|
|
|
|||
|
|
namespace CaeJob
|
|||
|
|
{
|
|||
|
|
[Serializable]
|
|||
|
|
public enum JobStatus
|
|||
|
|
{
|
|||
|
|
None,
|
|||
|
|
InQueue,
|
|||
|
|
Running,
|
|||
|
|
OK,
|
|||
|
|
Killed,
|
|||
|
|
TimedOut,
|
|||
|
|
Failed,
|
|||
|
|
FailedWithResults,
|
|||
|
|
}
|
|||
|
|
}
|