ResourcePart.class.php 341 B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. * Define a ResourcePart.
  4. *
  5. * @author valentin carruesco
  6. *
  7. * @category Core
  8. *
  9. * @license copyright
  10. */
  11. class ResourcePart extends Entity
  12. {
  13. public $id,$resource,$part,$sort;
  14. protected $fields =
  15. array(
  16. 'id' => 'key',
  17. 'resource' => 'int',
  18. 'part' => 'int',
  19. 'sort' => 'int',
  20. );
  21. }