12 lines
172 B
PHP
12 lines
172 B
PHP
<?php
|
|
namespace common\events;
|
|
|
|
use yii\base\Event;
|
|
|
|
class PrescriptionEvent extends Event
|
|
{
|
|
/** @var \common\models\oldDb\Prescription */
|
|
public $prescription;
|
|
|
|
}
|