current init
This commit is contained in:
10
backend/src/Enum/TaskSchemaStatus.php
Normal file
10
backend/src/Enum/TaskSchemaStatus.php
Normal file
@@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
namespace App\Enum;
|
||||
|
||||
enum TaskSchemaStatus: string
|
||||
{
|
||||
case Active = 'aktiv';
|
||||
case Completed = 'erledigt';
|
||||
case Inactive = 'inaktiv';
|
||||
}
|
||||
13
backend/src/Enum/TaskSchemaType.php
Normal file
13
backend/src/Enum/TaskSchemaType.php
Normal file
@@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
namespace App\Enum;
|
||||
|
||||
enum TaskSchemaType: string
|
||||
{
|
||||
case Single = 'einzel';
|
||||
case Daily = 'taeglich';
|
||||
case Multi = 'multi';
|
||||
case Weekly = 'woechentlich';
|
||||
case Monthly = 'monatlich';
|
||||
case Yearly = 'jaehrlich';
|
||||
}
|
||||
9
backend/src/Enum/TaskStatus.php
Normal file
9
backend/src/Enum/TaskStatus.php
Normal file
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
|
||||
namespace App\Enum;
|
||||
|
||||
enum TaskStatus: string
|
||||
{
|
||||
case Active = 'aktiv';
|
||||
case Completed = 'erledigt';
|
||||
}
|
||||
Reference in New Issue
Block a user