Continue fleshing out project management system

This commit is contained in:
Alex Cabal 2024-12-16 14:56:10 -06:00
parent 657ecc68d4
commit 051e286a6d
19 changed files with 420 additions and 108 deletions

View file

@ -0,0 +1,10 @@
<?
namespace Enums;
enum ProjectReminderType: string{
/** An email to nudge the producer on a stalled project. */
case Stalled = 'stalled';
/** An email to notify the producer we are considering their project abandoned. */
case Abandoned = 'abandoned';
}