hanyuu/src/Users/IUserAuthInfo.php

11 lines
208 B
PHP
Raw Normal View History

2023-01-09 21:44:34 +00:00
<?php
namespace Hanyuu\Users;
use Index\DateTime;
interface IUserAuthInfo {
public function getUserId(): string;
public function getType(): string;
public function getEnabledTime(): DateTime;
}