Add content. #479

This commit is contained in:
Korina Cordero 2020-08-28 04:12:42 +00:00
parent c30874e1c0
commit 73dcdb0b99

View file

@ -0,0 +1,14 @@
<?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',
];
}