oms-Exchange/Models/ExchangeType.php
2020-02-06 23:54:01 +01:00

40 lines
817 B
PHP

<?php
/**
* Orange Management
*
* PHP Version 7.4
*
* @package Modules\Exchange\Models
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
* @link https://orange-management.org
*/
declare(strict_types=1);
namespace Modules\Exchange\Models;
use phpOMS\Stdlib\Base\Enum;
/**
* Exchange status enum.
*
* @package Modules\Exchange\Models
* @license OMS License 1.0
* @link https://orange-management.org
* @since 1.0.0
*/
abstract class ExchangeType extends Enum
{
public const CUSTOMER = 1;
public const SUPPLIER = 2;
public const ARTICLE = 3;
public const BOOKING = 4;
public const ACCOUNT = 5;
public const ADDRESS = 6;
public const COSTCENTER = 7;
public const COSTOBJECT = 8;
public const INVOICE = 9;
}