Common models

This commit is contained in:
2019-12-23 18:01:06 -03:00
parent e4cc966ad7
commit 50c2bb0f15
9 changed files with 521 additions and 0 deletions

12
src/common/Action.php Normal file
View File

@ -0,0 +1,12 @@
<?php
namespace Incoviba\common;
use Incoviba\Common\Alias\OldModel as Model;
/**
* @property int $id
* @property string $description
*/
class Action extends Model
{
}