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