mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2025-01-15 16:21:14 +01:00
13 lines
251 B
PHP
13 lines
251 B
PHP
<?php
|
|
|
|
// SPDX-FileCopyrightText: 2025 Andreas Palm
|
|
//
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
namespace Xentral\Carrier\Go\Data;
|
|
|
|
enum OrderStatus : string {
|
|
case New = 'New';
|
|
case Released = 'Released';
|
|
case Cancelled = 'Cancelled';
|
|
} |