1
0
mirror of https://github.com/elyby/accounts.git synced 2024-12-14 09:29:01 +05:30
accounts/common/models/amqp/AccountBanned.php

15 lines
186 B
PHP
Raw Normal View History

<?php
namespace common\models\amqp;
use yii\base\BaseObject;
class AccountBanned extends BaseObject {
public $accountId;
public $duration = -1;
public $message = '';
}