mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange-2.0.git
synced 2026-08-21 13:33:57 +00:00
11 lines
147 B
PHP
11 lines
147 B
PHP
<?php
|
|
|
|
namespace App\Classes\ValueObjects\Constants;
|
|
|
|
final class BookingTrust {
|
|
|
|
public const UNTRUSTED = 0;
|
|
|
|
public const TRUSTED = 1;
|
|
}
|