feat: implement new order methods, transport enums, and conveyor telegram overrides

This commit is contained in:
2026-05-16 15:57:04 +02:00
parent 0a36e2c5f9
commit eb82e4e0b2
9 changed files with 482 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
public enum TransportOrderStatus
{
Initial,
Pending,
InProgress,
Transmitted,
InDestinationZone,
InSequencer,
Finished,
Cancelled,
/// <summary>
/// see <see cref="ModelEnumParser.UnmappedEnumValue"/>
/// </summary>
Unmapped
}