16 lines
240 B
C#
16 lines
240 B
C#
public enum TransportOrderStatus
|
|
{
|
|
Initial,
|
|
Pending,
|
|
InProgress,
|
|
Transmitted,
|
|
InDestinationZone,
|
|
InSequencer,
|
|
Finished,
|
|
Cancelled,
|
|
|
|
/// <summary>
|
|
/// see <see cref="ModelEnumParser.UnmappedEnumValue"/>
|
|
/// </summary>
|
|
Unmapped
|
|
} |