mirror of
https://github.com/openvk/openvk
synced 2024-11-15 03:31:18 +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;
|
|
}
|