mirror of
https://github.com/Teamlinker/Teamlinker.git
synced 2025-06-03 03:00:17 +00:00
22 lines
358 B
TypeScript
22 lines
358 B
TypeScript
export enum ECommon_Services {
|
|
GateWay="gateway",
|
|
User="user",
|
|
Cooperation="cooperation",
|
|
File="file",
|
|
AUTH="auth",
|
|
Wiki="wiki",
|
|
Calendar="calendar",
|
|
Meeting="meeting"
|
|
}
|
|
|
|
export enum ECommon_User_Online_Status {
|
|
OFFLINE,
|
|
ONLINE,
|
|
BUSY,
|
|
MEETING
|
|
}
|
|
|
|
export enum ECommon_Application_Mode {
|
|
ONLINE,
|
|
OFFLINE
|
|
} |