Files
ops-Gazelle/app/Intf/Bookmarked.php
2025-08-27 16:44:44 +02:00

13 lines
238 B
PHP

<?php
namespace Gazelle\Intf;
interface Bookmarked {
// objects that implement this can be bookmarked
public function id(): int;
public function bookmarkTable(): string;
public function bookmarkColumnName(): string;
}