<?php

/**
 * Shipment tracking for Isotope eCommerce
 *
 * Copyright (c) 2017 Benjamin Roth
 *
 * @license commercial
 */

namespace eSM_isotope_shipmenttracking\Model;


/**
 * @property int    $id
 * @property int    $tstamp
 * @property string $name
 * @property string $note
 * @property string $trackingUrl
 */
class ShipmentTrackingModel extends \Model
{

    /**
     * Name of the current table
     * @var string
     */
    protected static $strTable = 'tl_iso_shipmenttracking';

}