/* ============================================================ This is the "Geschlecht" file from Author: Philipp Kotte written on: 05 / 10 / 2023 at: 23:31 ============================================================ */ package Domain.Enums; import java.io.Serializable; public enum Geschlecht implements Serializable { M, W, D, KI; }