1234567891011121314151617181920212223 |
- <?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',
- );
- }
|