OpenXE/classes/Modules/ShippingMethod/Model/ShipmentStatus.php
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;
}