86732b13130c234957f266dee3251e1ca6ee3810
[WP-Plugins/glm-member-db-registrations.git] /
1 <?php
2 namespace PayPal\Test\Common;
3 use PayPal\Common\PPModel;
4 class SimpleClass extends PPModel {
5
6         public function setName($name) {
7                 $this->name = $name;
8         }
9         public function getName() {
10                 return $this->name;
11         }
12         
13         public function setDescription($desc) {
14                 $this->desc = $desc;
15         }
16         public function getDescription() {
17                 return $this->desc;
18         }
19 }