15 lines
346 B
TypeScript
15 lines
346 B
TypeScript
import { LocaleCode, DesktopType, DeviceType } from '@ucap/core';
|
|
|
|
export interface LoginSession {
|
|
loginId?: string;
|
|
loginPw?: string;
|
|
initPw?: boolean;
|
|
companyCode?: string;
|
|
companyGroupType?: string;
|
|
companyGroupCode?: string;
|
|
localeCode?: LocaleCode;
|
|
encData?: string;
|
|
deviceType?: DeviceType;
|
|
desktopType?: DesktopType;
|
|
}
|