death-notifier/src/main/php/com/fwdekker/deathnotifier/trackings/PersonStatus.php

16 lines
254 B
PHP

<?php
namespace com\fwdekker\deathnotifier\trackings;
/**
* The status assigned to a person.
*/
enum PersonStatus: string
{
case Alive = "alive";
case PossiblyAlive = "possibly alive";
case Missing = "missing";
case Dead = "dead";
}