Files
mayfly-go/frontend/src/views/home/enums.ts

7 lines
176 B
TypeScript
Raw Normal View History

2024-11-20 22:43:53 +08:00
import { EnumValue } from '@/common/Enum';
export const MsgTypeEnum = {
Login: EnumValue.of(1, 'home.msgTypeLogin'),
Notify: EnumValue.of(2, 'home.msgTypeNotify'),
};