9 lines
155 B
TypeScript
9 lines
155 B
TypeScript
import { mapEnumToOptions } from '@abp/ng.core';
|
|
|
|
export enum Gender {
|
|
Male = 1,
|
|
Female = 2,
|
|
}
|
|
|
|
export const genderOptions = mapEnumToOptions(Gender);
|