mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2025-01-09 05:20:28 +01:00
14 lines
228 B
PHP
14 lines
228 B
PHP
|
<?php
|
||
|
|
||
|
// SPDX-FileCopyrightText: 2024 Andreas Palm
|
||
|
//
|
||
|
// SPDX-License-Identifier: AGPL-3.0-only
|
||
|
|
||
|
namespace Xentral\Modules\ShippingMethod\Model;
|
||
|
|
||
|
enum ShipmentStatus
|
||
|
{
|
||
|
case Announced;
|
||
|
case EnRoute;
|
||
|
case Delivered;
|
||
|
}
|