add workload placement
This commit is contained in:
parent
465db4a5b8
commit
46ba265f38
8 changed files with 291 additions and 34 deletions
10
backend/app/Schedule/WorkloadPlacement.php
Normal file
10
backend/app/Schedule/WorkloadPlacement.php
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
<?php
|
||||
|
||||
namespace App\Schedule;
|
||||
|
||||
enum WorkloadPlacement: string
|
||||
{
|
||||
case Start = 'start';
|
||||
case Middle = 'middle';
|
||||
case End = 'end';
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue