mirror of
https://github.com/Bubka/2FAuth.git
synced 2024-11-26 10:15:40 +01:00
10 lines
115 B
PHP
10 lines
115 B
PHP
<?php
|
|
|
|
namespace App\Models\Dto;
|
|
|
|
class HotpDto extends OtpDto
|
|
{
|
|
/* @var integer */
|
|
public int $counter;
|
|
}
|