wikipoints/models/TrackFiles.php

18 lines
219 B
PHP

<?php
class TrackFiles extends Model
{
function __construct($fromArray = array())
{
$this->_tableName_ = 'trackFiles';
parent::__construct($fromArray);
}
static function model()
{
return new self();
}
}