15 lines
191 B
PHP
15 lines
191 B
PHP
|
<?php
|
||
|
namespace App\Alias;
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
* @author Aldarien
|
||
|
* @property int id
|
||
|
* @property string descripcion
|
||
|
*
|
||
|
*/
|
||
|
class NewTipo extends NewModel
|
||
|
{
|
||
|
protected static $_timestamps = true;
|
||
|
}
|
||
|
?>
|