mirror of
https://github.com/openvk/openvk
synced 2025-01-09 17:29:42 +03:00
6 lines
136 B
PHP
6 lines
136 B
PHP
<?php declare(strict_types=1);
|
|
namespace openvk\Web\Models\Entities;
|
|
|
|
interface ILinkable {
|
|
public function getOVKLink(): string;
|
|
}
|