mirror of
https://github.com/OPSnet/Gazelle.git
synced 2026-01-16 18:04:34 -05:00
13 lines
238 B
PHP
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;
|
|
}
|