mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
22 lines
487 B
PHP
22 lines
487 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/*
|
|
* Chill is a software for social workers
|
|
*
|
|
* For the full copyright and license information, please view
|
|
* the LICENSE file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Chill\MainBundle\Entity;
|
|
|
|
enum GenderIconEnum: string
|
|
{
|
|
case MALE = 'bi bi-gender-male';
|
|
case FEMALE = 'bi bi-gender-female';
|
|
case NEUTRAL = 'bi bi-gender-neuter';
|
|
case AMBIGUOUS = 'bi bi-gender-ambiguous';
|
|
case TRANS = 'bi bi-gender-trans';
|
|
}
|