mirror of
https://github.com/SyncrowIOT/backend.git
synced 2025-07-17 03:05:13 +00:00
10 lines
154 B
TypeScript
10 lines
154 B
TypeScript
export class AuthInterface {
|
|
email: string;
|
|
userId: number;
|
|
uuid: string;
|
|
sessionId: string;
|
|
id: number;
|
|
role?: object;
|
|
project?: object;
|
|
}
|