| 123456789101112131415161718 |
- <?php
- namespace ThurData\Servers\KerioEmail\Core\UI\Interfaces;
- /*
- * Interface for set of data returned by datatable
- */
- interface DataSetInterface
- {
- public function getOffset();
- public function getRecords();
- public function getLenght();
- public function getFullLenght();
- }
|