| 1 | <?php  | 
            ||
| 8 | class ODataPropertyContent  | 
            ||
| 9 | { | 
            ||
| 10 | /**  | 
            ||
| 11 | * The collection of properties.  | 
            ||
| 12 | *  | 
            ||
| 13 | * @var ODataProperty[]  | 
            ||
| 14 | */  | 
            ||
| 15 | public $properties = [];  | 
            ||
| 16 | |||
| 17 | /**  | 
            ||
| 18 | * @return \POData\ObjectModel\ODataProperty[]  | 
            ||
| 19 | */  | 
            ||
| 20 | public function getPropertys()  | 
            ||
| 24 | |||
| 25 | /**  | 
            ||
| 26 | * @param $newProperties \POData\ObjectModel\ODataProperty[]  | 
            ||
| 27 | */  | 
            ||
| 28 | public function setPropertys(array $newProperties)  | 
            ||
| 35 | }  | 
            ||
| 36 |