Browse code

Initial commit

Benjamin Roth authored on19/03/2019 14:48:59
Showing1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,30 @@
1
+<?php
2
+
3
+/**
4
+ * Shipment tracking for Isotope eCommerce
5
+ *
6
+ * Copyright (c) 2017 Benjamin Roth
7
+ *
8
+ * @license commercial
9
+ */
10
+
11
+namespace eSM_isotope_shipmenttracking\Model;
12
+
13
+
14
+/**
15
+ * @property int    $id
16
+ * @property int    $tstamp
17
+ * @property string $name
18
+ * @property string $note
19
+ * @property string $trackingUrl
20
+ */
21
+class ShipmentTrackingModel extends \Model
22
+{
23
+
24
+    /**
25
+     * Name of the current table
26
+     * @var string
27
+     */
28
+    protected static $strTable = 'tl_iso_shipmenttracking';
29
+
30
+}