Skip to content

Commit

Permalink
add api return code for project
Browse files Browse the repository at this point in the history
  • Loading branch information
xxl4 committed Dec 6, 2024
1 parent 232d377 commit 18f2c49
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/Enum/ApiCode.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?php
namespace NexaMerchant\Apis\Enum;

use BenSampo\Enum\Enum;

class ApiCode extends Enum
{
const ORDER = 1000;
const PRODUCT = 2000;
const USER = 3000;
const SYSTEM = 4000;
}

0 comments on commit 18f2c49

Please sign in to comment.