portal.mkgtu.ru/common/modules/abiturient/models/interfaces/ExamInterface.php

13 lines
225 B
PHP
Raw Permalink Normal View History

2024-03-28 09:51:45 +03:00
<?php
namespace common\modules\abiturient\models\interfaces;
interface ExamInterface{
const STATUS_NOTVERIFIED = 0;
const STATUS_VERIFIED = 1;
const STATUS_UNSTAGED = 2;
const STATUS_STAGED = 0;
}