1
0
mirror of https://github.com/OpenXE-org/OpenXE.git synced 2025-04-02 19:40:22 +02:00

16 lines
243 B
PHP

<?php
// SPDX-FileCopyrightText: 2024 Andreas Palm
//
// SPDX-License-Identifier: AGPL-3.0-only
namespace Xentral\Modules\Onlineshop\Data;
enum OrderStatus
{
case Imported;
case InProgress;
case Completed;
case Cancelled;
}