123456789101112131415161718192021222324252627 |
- <?php
- /**
- * Define a ResourcePart
- * @author valentin carruesco
- * @category Core
- * @license copyright
- */
- class ResourcePart extends Entity{
- public $id,$resource,$part,$sort;
-
- protected $fields =
- array(
- 'id'=>'key',
- 'resource' => 'int',
- 'part' => 'int',
- 'sort' => 'int'
- );
- }
- ?>
|