call echo logger
[auerswald-callnotifier.git] / src / callnotifier / CallMonitor / Call.php
diff --git a/src/callnotifier/CallMonitor/Call.php b/src/callnotifier/CallMonitor/Call.php
new file mode 100644 (file)
index 0000000..3ebd251
--- /dev/null
@@ -0,0 +1,34 @@
+<?php
+namespace callnotifier;
+
+class CallMonitor_Call
+{
+    /**
+     * Telephone number of caller
+     *
+     * @var string
+     */
+    public $from;
+
+    /**
+     * Telephone number of called person
+     *
+     * @var string
+     */
+    public $to;
+
+    /**
+     * Time when the call started, unix timestamp
+     *
+     * @var int
+     */
+    public $start;
+
+    /**
+     * Time when the call ended, unix timestamp
+     */
+    public $end;
+
+}
+
+?>