mirror of
https://github.com/standardebooks/web.git
synced 2025-07-05 06:10:36 -04:00
10 lines
261 B
PHP
10 lines
261 B
PHP
<?
|
|
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';
|
|
}
|