mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2024-12-27 07:00:29 +01:00
16 lines
243 B
PHP
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;
|
||
|
}
|