Files
FHC-Core/application/models/codex/Gsprogramm_model.php
T
SimonGschnell a21a292da6 dokument upload
2024-01-29 16:48:41 +01:00

16 lines
213 B
PHP
Executable File

<?php
class Gsprogramm_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'bis.tbl_gsprogramm';
$this->pk = 'gsprogramm_id';
}
}