mirror of
https://github.com/Karaka-Management/oms-Shop.git
synced 2026-01-11 18:48:41 +00:00
37 lines
597 B
PHP
Executable File
37 lines
597 B
PHP
Executable File
<?php
|
|
/**
|
|
* Karaka
|
|
*
|
|
* PHP Version 7.4
|
|
*
|
|
* @package Modules\Shop\Models
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 1.0
|
|
* @version 1.0.0
|
|
* @link https://karaka.app
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
namespace Modules\Shop\Models;
|
|
|
|
use phpOMS\Stdlib\Base\Enum;
|
|
|
|
/**
|
|
* Permision state enum.
|
|
*
|
|
* @package Modules\Shop\Models
|
|
* @license OMS License 1.0
|
|
* @link https://karaka.app
|
|
* @since 1.0.0
|
|
*/
|
|
abstract class PermissionCategory extends Enum
|
|
{
|
|
public const ARTICLE = 1;
|
|
|
|
public const BUYER = 2;
|
|
|
|
public const SELLER = 3;
|
|
|
|
public const SHOP = 4;
|
|
}
|