OpenXE/classes/Modules/ShippingMethod/Model/ShipmentStatus.php

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