mirror of
https://github.com/Bubka/2FAuth.git
synced 2024-11-22 16:23:18 +01:00
13 lines
156 B
PHP
13 lines
156 B
PHP
<?php
|
|
|
|
namespace App\Models\Dto;
|
|
|
|
class OtpDto
|
|
{
|
|
/* @var integer */
|
|
public string $password;
|
|
|
|
/* @var integer */
|
|
public string $otp_type;
|
|
}
|