ContactVO.php 251 B

12345678910111213141516
  1. <?php
  2. /**
  3. * Test Class for returning the name of the php class to flex.
  4. *
  5. * @group ZF-6130
  6. */
  7. class ContactVO
  8. {
  9. public $id = 0;
  10. public $firstname = "";
  11. public $lastname = "";
  12. public $email = "";
  13. public $mobile = "";
  14. }
  15. ?>