1
0
mirror of https://github.com/OpenXE-org/OpenXE.git synced 2025-03-26 07:20:23 +01:00

14 lines
228 B
PHP
Raw Normal View History

2024-07-21 12:19:29 +02:00
<?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;
}