14 lines
319 B
PHP
14 lines
319 B
PHP
<?php
|
|
|
|
namespace App\Ramcar;
|
|
|
|
class WillingToWaitContent extends NameValue
|
|
{
|
|
const WILLING_TO_WAIT = 'willing_to_wait';
|
|
const NOT_WILLING_TO_WAIT = 'not_willing_to_wait';
|
|
|
|
const COLLECTION = [
|
|
'willing_to_wait' => 'Willing to Wait',
|
|
'not_willing_to_wait' => 'Not Willing to Wait',
|
|
];
|
|
}
|