2019-12-23 18:00:39 -03:00
|
|
|
<?php
|
2019-12-23 18:09:00 -03:00
|
|
|
namespace Incoviba\Common\Alias;
|
2019-12-23 18:00:39 -03:00
|
|
|
|
|
|
|
/**
|
2019-12-23 18:09:00 -03:00
|
|
|
*
|
2019-12-23 18:00:39 -03:00
|
|
|
* @author Aldarien
|
|
|
|
* @property int id
|
|
|
|
* @property string descripcion
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
class NewTipo extends NewModel
|
|
|
|
{
|
|
|
|
protected static $_timestamps = true;
|
|
|
|
}
|
2019-12-23 18:09:00 -03:00
|
|
|
?>
|