felicity-lims/felicity/apps/patient/conf.py
2023-04-07 17:52:19 +02:00

15 lines
232 B
Python

"""Worksheet Configs
This file is part of Felicity LIMS Software
"""
class Genders(object):
"""Gender"""
MALE = "Male"
FEMALE = "Female"
MISSING = "Missing"
TRANS_GENDER = "Trans Gender"
genders = Genders()