plutoapi-v2/src/models/partyplaner/user/Session.interface.ts

9 lines
161 B
TypeScript

/**
* Used in the registerUser and loginUser methods as return value
*/
export interface Session {
userId: string;
sessionId: string;
sessionKey: string;
}