MCPcopy Index your code
hub / github.com/MCSManager/MCSManager / IUser

Interface IUser

panel/src/app/entity/entity_interface.ts:16–31  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

14}
15
16export interface IUser {
17 uuid?: string;
18 userName?: string;
19 passWord?: string;
20 salt?: string;
21 permission?: number;
22 registerTime?: string;
23 loginTime?: string;
24 instances?: Array<any>;
25 isInit?: boolean;
26 passWordType?: number;
27 secret?: string;
28 open2FA?: boolean;
29 ssoSub?: string;
30 ssoBound?: boolean;
31}
32
33export interface ICompleteUser {
34 uuid: string;

Callers

nothing calls this directly

Implementers 1

Userpanel/src/app/entity/user.ts

Calls

no outgoing calls

Tested by

no test coverage detected