fitness-web/backend/models/CardImportRfidForm.php

30 lines
452 B
PHP

<?php
namespace backend\models;
use Yii;
use yii\base\Model;
use common\models\Card;
use common\models\Customer;
use common\models\Ticket;
use common\models\Account;
use yii\web\UploadedFile;
/**
* ContactForm is the model behind the contact form.
* @property \Yii\web\UploadedFile $file
*/
class CardImportRfidForm extends Model{
public $file;
public $message;
public function rules(){
return [
[['file'], 'file']
];
}
}