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