mirror of
https://github.com/pelican-dev/panel.git
synced 2026-02-24 19:08:53 +03:00
10 lines
113 B
PHP
10 lines
113 B
PHP
<?php
|
|
|
|
namespace App\Enums;
|
|
|
|
enum StepPosition: string
|
|
{
|
|
case Before = 'before';
|
|
case After = 'after';
|
|
}
|