Базовая реализация API для блокировки аккаунта

This commit is contained in:
ErickSkrauch
2016-12-11 14:37:55 +03:00
parent 213782ff62
commit 28b06d51ce
3 changed files with 124 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
<?php
namespace common\models\amqp;
use yii\base\Object;
class AccountBanned extends Object {
public $accountId;
public $duration = -1;
public $message = '';
}