10 lines
153 B
PHP
10 lines
153 B
PHP
<?php
|
|
|
|
namespace common\support\structure;
|
|
|
|
class eSupportStatus {
|
|
const WAIT_SUPPORT = 1;
|
|
const WAIT_PROFILE = 2;
|
|
const CLOSE = 3;
|
|
}
|