mirror of
https://github.com/beak-insights/felicity-lims.git
synced 2025-02-24 17:02:55 +08:00
15 lines
232 B
Python
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()
|