Files
contao-leaflet-maps/src/Model/PopupModel.php

30 lines
522 B
PHP
Raw Normal View History

2015-01-27 17:14:58 +01:00
<?php
/**
2016-10-11 10:40:15 +02:00
* @package contao-leaflet-maps
2015-01-27 17:14:58 +01:00
* @author David Molineus <david.molineus@netzmacht.de>
2016-10-11 10:40:15 +02:00
* @copyright 2014-2016 netzmacht David Molineus
2015-01-27 17:14:58 +01:00
* @license LGPL 3.0
* @filesource
*
*/
namespace Netzmacht\Contao\Leaflet\Model;
/**
* Class PopupModel.
*
* @property mixed|null offset
*
* @package Netzmacht\Contao\Leaflet\Model
*/
class PopupModel extends AbstractActiveModel
{
/**
* The table name.
*
* @var string
*/
protected static $strTable = 'tl_leaflet_popup';
}