lk.zachem.info/app/Models/Deal/ContractStatus.php
2025-03-20 10:32:29 +08:00

12 lines
155 B
PHP

<?php
namespace App\Models\Deal;
enum ContractStatus
{
case NEW;
case TREATY;
case RESERVATION;
case SUCCESS;
case DECLINE;
}