mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange-2.0.git
synced 2026-08-19 04:23:55 +00:00
18 lines
239 B
PHP
18 lines
239 B
PHP
<?php
|
|
|
|
namespace App\Classes\ValueObjects\Constants;
|
|
|
|
final class PerfexCRMTaskPriority {
|
|
|
|
public const DEFAULT = 0;
|
|
|
|
public const LOW = 1;
|
|
|
|
public const MEDIUM = 2;
|
|
|
|
public const HIGH = 3;
|
|
|
|
public const URGENT = 4;
|
|
|
|
}
|