mirror of
https://github.com/Bubka/2FAuth.git
synced 2025-02-07 06:00:23 +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;
|
||
|
}
|