forked from Snck3rs/contao-leaflet-maps
24 lines
388 B
PHP
24 lines
388 B
PHP
<?php
|
|
|
|
/**
|
|
* @package dev
|
|
* @author David Molineus <david.molineus@netzmacht.de>
|
|
* @copyright 2015 netzmacht creative David Molineus
|
|
* @license LGPL 3.0
|
|
* @filesource
|
|
*
|
|
*/
|
|
|
|
namespace Netzmacht\Contao\Leaflet\Model;
|
|
|
|
|
|
class VectorModel extends \Model
|
|
{
|
|
/**
|
|
* Model table.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected static $strTable = 'tl_leaflet_vector';
|
|
}
|