feat: add type remiders

This commit is contained in:
2025-12-18 18:16:23 +03:30
parent fd3caed934
commit bf0cb80bd0
4 changed files with 47 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
<?php
namespace App;
enum ReminderType : string
{
case REMINDER = 'reminder';
case MOTIVATE = 'motivate';
}