ResourcePart.class.php 297 B

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