3ebd251a66e9cab36f3df01dd61b77d75f5cfe37
[auerswald-callnotifier.git] / src / callnotifier / CallMonitor / Call.php
1 <?php
2 namespace callnotifier;
3
4 class CallMonitor_Call
5 {
6     /**
7      * Telephone number of caller
8      *
9      * @var string
10      */
11     public $from;
12
13     /**
14      * Telephone number of called person
15      *
16      * @var string
17      */
18     public $to;
19
20     /**
21      * Time when the call started, unix timestamp
22      *
23      * @var int
24      */
25     public $start;
26
27     /**
28      * Time when the call ended, unix timestamp
29      */
30     public $end;
31
32 }
33
34 ?>