mirror of
https://github.com/Bubka/2FAuth.git
synced 2024-12-31 19:42:08 +01:00
9 lines
114 B
PHP
9 lines
114 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Models\Dto;
|
||
|
|
||
|
class HotpDto extends OtpDto
|
||
|
{
|
||
|
/* @var integer */
|
||
|
public int $counter;
|
||
|
}
|