mirror of
https://github.com/Bubka/2FAuth.git
synced 2024-12-03 05:35:25 +01:00
12 lines
167 B
PHP
12 lines
167 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Models\Dto;
|
||
|
|
||
|
class TotpDto extends OtpDto
|
||
|
{
|
||
|
/* @var integer */
|
||
|
public int $generated_at;
|
||
|
|
||
|
/* @var integer */
|
||
|
public int $period;
|
||
|
}
|