9 lines
198 B
TypeScript
9 lines
198 B
TypeScript
// backend/src/modules/auth/interfaces/jwt-payload.interface.ts
|
|
export interface JwtPayload {
|
|
sub: string; // user id
|
|
email: string;
|
|
organizationId?: string;
|
|
type?: 'access' | 'refresh';
|
|
}
|
|
|