blob: ad9f7d198b5f6c577c69b60dafab29b2539651ec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<?php
class Project
{
public $ActualDuration = 0;
public $CreatorUserName = '';
public $CompletionDate = 0;
public $DateCreated = 0;
public $Description = '';
public $EstimateDuration = 0;
public $ID = 0;
public $ManagerUserName = '';
public $Name = '';
}
?>
|