1
0
mirror of https://github.com/elyby/accounts.git synced 2025-03-03 15:12:57 +05:30

15 lines
265 B
PHP
Raw Normal View History

<?php
namespace api\modules\session\models\protocols;
interface JoinInterface {
public function getAccessToken(): string;
public function getSelectedProfile(): string;
public function getServerId(): string;
public function validate(): bool;
}