This repository has been archived on 2026-05-29. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
ndm-web-client/src/apis/models/user/login-result.ts
T
2025-08-13 01:36:30 +08:00

9 lines
150 B
TypeScript

export interface LoginResult {
tenantId: string;
uuid: string;
token: string;
refreshToken: string;
expire: string;
expiration: string;
}