Files
oficial/app_old/app/Alias/NewTipo.php

15 lines
191 B
PHP
Raw Normal View History

2021-03-25 21:25:17 -03:00
<?php
2023-07-24 20:41:38 -04:00
namespace App\Alias;
2021-03-25 21:25:17 -03:00
/**
2023-07-24 20:41:38 -04:00
*
2021-03-25 21:25:17 -03:00
* @author Aldarien
* @property int id
* @property string descripcion
*
*/
class NewTipo extends NewModel
{
protected static $_timestamps = true;
}
2023-07-24 20:41:38 -04:00
?>