mirror of
https://github.com/elyby/accounts.git
synced 2024-11-09 23:12:20 +05:30
15 lines
178 B
PHP
15 lines
178 B
PHP
<?php
|
|
namespace common\models\amqp;
|
|
|
|
use yii\base\Object;
|
|
|
|
class AccountBanned extends Object {
|
|
|
|
public $accountId;
|
|
|
|
public $duration = -1;
|
|
|
|
public $message = '';
|
|
|
|
}
|