Details |
Letzte Änderung |
Log anzeigen
| RSS feed
| Revision |
Autor |
Zeilennr. |
Zeile |
| 1 |
lars |
1 |
<?php
|
|
|
2 |
|
|
|
3 |
class TimeEntryRecord
|
|
|
4 |
{
|
|
|
5 |
public $CreatorUserName='';
|
|
|
6 |
public $Category;
|
|
|
7 |
public $DateCreated=0;
|
|
|
8 |
public $Description='';
|
|
|
9 |
public $Duration=0.0;
|
|
|
10 |
public $ID=0;
|
|
|
11 |
public $Project;
|
|
|
12 |
public $ReportDate=0;
|
|
|
13 |
public $Username;
|
|
|
14 |
}
|
|
|
15 |
|
|
|
16 |
?>
|