libpairtwo/src/Enums/Gender.php

19 lines
304 B
PHP
Raw Normal View History

<?php
/**
* Created by PhpStorm.
* User: jeroen
* Date: 25/01/19
* Time: 15:56
*/
2019-02-01 15:51:35 +01:00
namespace JeroenED\Libpairtwo\Enums;
use MyCLabs\Enum\Enum;
2019-03-04 11:51:06 +01:00
class Gender extends Enum
{
2019-03-04 11:51:06 +01:00
const Neutral = 'X'; // Unforturnately, Incompatible with Pairtwo (Dinos)
const Male = 'M';
const Female = 'F';
2019-02-11 17:37:30 +01:00
}