1
0
mirror of https://github.com/OpenXE-org/OpenXE.git synced 2025-03-26 15:30:22 +01:00
2024-09-28 23:16:51 +02:00

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;
}