SnapshotRawDataTable.php 487 B

12345678910111213141516171819
  1. <?php
  2. namespace ModulesGarden\Servers\ProxmoxVps\App\UI\Snapshot\Pages;
  3. use ModulesGarden\Servers\ProxmoxVps\Core\UI\Interfaces\AdminArea;
  4. use ModulesGarden\Servers\ProxmoxVps\Core\UI\Interfaces\ClientArea;
  5. use ModulesGarden\Servers\ProxmoxVps\Core\UI\Widget\RawDataTable\RawDataTable;
  6. class SnapshotRawDataTable extends RawDataTable implements ClientArea, AdminArea
  7. {
  8. use SnapshotTrait;
  9. protected $id = 'snapshotDataTable';
  10. protected $title = 'snapshotDataTable';
  11. }