initial commit

Signed-off-by: tracer <tracer@24unix.net>
This commit is contained in:
tracer 2022-04-06 16:23:30 +02:00
parent 8635c9625f
commit 47585fccd4
1 changed files with 14 additions and 0 deletions

14
src/Enums/PanelType.php Normal file
View File

@ -0,0 +1,14 @@
<?php
namespace App\Enums;
/**
*
*/
enum PanelType
{
case Panel;
case Custom;
case Undefined;
}