namespace adas_core.Domain.Enums; /// /// Provides a static container for patient-related enumeration values or constants used throughout the application. /// public static class PatientEnum { public enum Gender { Male, Female, Undifferentiated, Unknown } }