mirror of
https://github.com/chansee97/nova-admin.git
synced 2025-04-06 03:57:54 +08:00
10 lines
175 B
TypeScript
10 lines
175 B
TypeScript
// export const genderLabels: Record<NonNullable<CommonList.GenderType>, string> = {
|
|
// 0: '女',
|
|
// 1: '男',
|
|
// }
|
|
/** Gender */
|
|
export enum Gender {
|
|
male,
|
|
female,
|
|
}
|