forked from 2211945/WIZARD_PR2_DOP
13 lines
288 B
Java
13 lines
288 B
Java
/*
|
|
============================================================
|
|
This is the "Geschlecht" file from Author: Philipp Kotte
|
|
written on: 05 / 10 / 2023 at: 23:31
|
|
============================================================
|
|
*/
|
|
package Domain.Enums;
|
|
|
|
public enum Geschlecht {
|
|
|
|
M, W, D, KI;
|
|
}
|