2023-10-05 23:49:36 +02:00
|
|
|
/*
|
|
|
|
============================================================
|
|
|
|
This is the "Geschlecht" file from Author: Philipp Kotte
|
|
|
|
written on: 05 / 10 / 2023 at: 23:31
|
|
|
|
============================================================
|
|
|
|
*/
|
|
|
|
package Domain.Enums;
|
|
|
|
|
|
|
|
public enum Geschlecht {
|
|
|
|
|
2023-10-10 12:04:21 +02:00
|
|
|
M, W, D, KI;
|
2023-10-05 23:49:36 +02:00
|
|
|
}
|