add to interview url

This commit is contained in:
andrey
2021-07-03 15:15:54 +03:00
parent 88503fd075
commit d3b75d04ad
4 changed files with 136 additions and 1 deletions

View File

@ -0,0 +1,31 @@
<?php
namespace frontend\modules\api\models;
use yii\base\Model;
/**
* Class AddToInterviewForm
* @property string $email;
* @property string $phone;
* @property integer $profile_id;
* @package frontend\modules\api\models
*/
class AddToInterviewForm extends Model
{
public $email;
public $phone;
public $profile_id;
public function rules()
{
return [
[['email', 'phone'], 'string'],
[['profile_id'], 'integer'],
[['skills'], 'checkIsArray'],
];
}
}