Alias definitions 1.0.0

This commit is contained in:
2019-12-23 18:00:39 -03:00
parent e4b309ecc9
commit e4cc966ad7
5 changed files with 139 additions and 0 deletions

15
common/Alias/NewTipo.php Normal file
View File

@ -0,0 +1,15 @@
<?php
namespace App\Alias;
/**
*
* @author Aldarien
* @property int id
* @property string descripcion
*
*/
class NewTipo extends NewModel
{
protected static $_timestamps = true;
}
?>