Added Entity.php & EntityType.php

This commit is contained in:
netkas 2024-08-31 16:50:32 -04:00
parent c33becd392
commit ef62893f21
2 changed files with 98 additions and 0 deletions

View file

@ -0,0 +1,10 @@
<?php
namespace Socialbox\Enums;
enum EntityType
{
case USER;
case BOARD;
case BOT;
}